Class Box
-
- All Implemented Interfaces:
public class Box
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>
-
-
Constructor Summary
Constructors Constructor Description Box()
-
Method Summary
Modifier and Type Method Description List<Symbol>
getSymbol()
Gets the value of the symbol property. Text
getText()
Gets the value of the text property. void
setText(Text value)
Sets the value of the text property. String
getColumn()
Gets the value of the column property. void
setColumn(String value)
Sets the value of the column property. String
getHasDiagonal()
Gets the value of the hasDiagonal property. void
setHasDiagonal(String value)
Sets the value of the hasDiagonal property. -
-
Method Detail
-
getSymbol
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:
Thevalue of the symbol property.
-
setText
void setText(Text value)
Sets the value of the text property.
- Parameters:
value
- allowed object is Text
-
getColumn
String getColumn()
Gets the value of the column property.
- Returns:
possibleobject is String
-
setColumn
void setColumn(String value)
Sets the value of the column property.
- Parameters:
value
- allowed object is String
-
getHasDiagonal
String getHasDiagonal()
Gets the value of the hasDiagonal property.
- Returns:
possibleobject is String
-
setHasDiagonal
void setHasDiagonal(String value)
Sets the value of the hasDiagonal property.
- Parameters:
value
- allowed object is String
-
-
-
-