Package iofXml.v2

Class Box

java.lang.Object
iofXml.v2.Box

public class Box extends Object

Java class for anonymous complex type

.

The following schema fragment specifies the expected content contained within this class.


 <complexType>
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <choice minOccurs="0">
         <element ref="{}Symbol" maxOccurs="unbounded"/>
         <element ref="{}Text"/>
       </choice>
       <attribute name="column" use="required">
         <simpleType>
           <restriction base="{http://www.w3.org/2001/XMLSchema}token">
             <enumeration value="A"/>
             <enumeration value="B"/>
             <enumeration value="C"/>
             <enumeration value="D"/>
             <enumeration value="E"/>
             <enumeration value="F"/>
             <enumeration value="G"/>
             <enumeration value="H"/>
           </restriction>
         </simpleType>
       </attribute>
       <attribute name="hasDiagonal" default="N">
         <simpleType>
           <restriction base="{http://www.w3.org/2001/XMLSchema}token">
             <enumeration value="Y"/>
             <enumeration value="N"/>
           </restriction>
         </simpleType>
       </attribute>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • symbol

      protected List<Symbol> symbol
    • text

      protected Text text
    • column

      protected String column
    • hasDiagonal

      protected String hasDiagonal
  • Constructor Details

    • Box

      public Box()
  • Method Details

    • getSymbol

      public List<Symbol> getSymbol()
      Gets the value of the symbol property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the symbol property.

      For example, to add a new item, do as follows:

       getSymbol().add(newItem);
       

      Objects of the following type(s) are allowed in the list Symbol

      Returns:
      The value of the symbol property.
    • getText

      public Text getText()
      Gets the value of the text property.
      Returns:
      possible object is Text
    • setText

      public void setText(Text value)
      Sets the value of the text property.
      Parameters:
      value - allowed object is Text
    • getColumn

      public String getColumn()
      Gets the value of the column property.
      Returns:
      possible object is String
    • setColumn

      public void setColumn(String value)
      Sets the value of the column property.
      Parameters:
      value - allowed object is String
    • getHasDiagonal

      public String getHasDiagonal()
      Gets the value of the hasDiagonal property.
      Returns:
      possible object is String
    • setHasDiagonal

      public void setHasDiagonal(String value)
      Sets the value of the hasDiagonal property.
      Parameters:
      value - allowed object is String