public class Table
extends java.lang.Object
Java class for table complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="table">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence maxOccurs="unbounded">
<element name="column-ref">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<attribute ref="{}id use="required""/>
<attribute name="visible" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
</restriction>
</complexContent>
</complexType>
</element>
</sequence>
<attribute ref="{}id use="required""/>
<attribute name="datatype" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="filter" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="orderby" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="height" type="{http://www.w3.org/2001/XMLSchema}int" />
<attribute name="width" type="{http://www.w3.org/2001/XMLSchema}int" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Class and Description |
|---|---|
static class |
Table.ColumnRef
Java class for anonymous complex type.
|
| Modifier and Type | Field and Description |
|---|---|
protected java.util.List<Table.ColumnRef> |
columnRef |
protected java.lang.String |
datatype |
protected java.lang.String |
filter |
protected java.lang.Integer |
height |
protected java.lang.String |
id |
protected java.lang.String |
orderby |
protected java.lang.Integer |
width |
| Constructor and Description |
|---|
Table() |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Table.ColumnRef> |
getColumnRef()
Gets the value of the columnRef property.
|
java.lang.String |
getDatatype()
Gets the value of the datatype property.
|
java.lang.String |
getFilter()
Gets the value of the filter property.
|
java.lang.Integer |
getHeight()
Gets the value of the height property.
|
java.lang.String |
getId()
Gets the value of the id property.
|
java.lang.String |
getOrderby()
Gets the value of the orderby property.
|
java.lang.Integer |
getWidth()
Gets the value of the width property.
|
void |
setDatatype(java.lang.String value)
Sets the value of the datatype property.
|
void |
setFilter(java.lang.String value)
Sets the value of the filter property.
|
void |
setHeight(java.lang.Integer value)
Sets the value of the height property.
|
void |
setId(java.lang.String value)
Sets the value of the id property.
|
void |
setOrderby(java.lang.String value)
Sets the value of the orderby property.
|
void |
setWidth(java.lang.Integer value)
Sets the value of the width property.
|
protected java.util.List<Table.ColumnRef> columnRef
protected java.lang.String id
protected java.lang.String datatype
protected java.lang.String filter
protected java.lang.String orderby
protected java.lang.Integer height
protected java.lang.Integer width
public java.util.List<Table.ColumnRef> getColumnRef()
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 columnRef property.
For example, to add a new item, do as follows:
getColumnRef().add(newItem);
Objects of the following type(s) are allowed in the list
Table.ColumnRef
public java.lang.String getId()
Stringpublic void setId(java.lang.String value)
value - allowed object is
Stringpublic java.lang.String getDatatype()
Stringpublic void setDatatype(java.lang.String value)
value - allowed object is
Stringpublic java.lang.String getFilter()
Stringpublic void setFilter(java.lang.String value)
value - allowed object is
Stringpublic java.lang.String getOrderby()
Stringpublic void setOrderby(java.lang.String value)
value - allowed object is
Stringpublic java.lang.Integer getHeight()
Integerpublic void setHeight(java.lang.Integer value)
value - allowed object is
Integerpublic java.lang.Integer getWidth()
Integerpublic void setWidth(java.lang.Integer value)
value - allowed object is
IntegerCopyright © 2015. All Rights Reserved.