|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.plasma.text.ddl.Table
public class Table
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>
<element ref="{http://www.servicelabs.org/plasma/text/ddl}pk" minOccurs="0"/>
<element ref="{http://www.servicelabs.org/plasma/text/ddl}column" maxOccurs="unbounded"/>
<element ref="{http://www.servicelabs.org/plasma/text/ddl}fk" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.servicelabs.org/plasma/text/ddl}index" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.servicelabs.org/plasma/text/ddl}behavior" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.servicelabs.org/plasma/text/ddl}unique" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.servicelabs.org/plasma/text/ddl}check" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
| Field Summary | |
|---|---|
protected List<Behavior> |
behaviors
|
protected List<Check> |
checks
|
protected List<Column> |
columns
|
protected List<Fk> |
fks
|
protected List<Index> |
indices
|
protected String |
name
|
protected Pk |
pk
|
protected List<Unique> |
uniques
|
| Constructor Summary | |
|---|---|
Table()
|
|
| Method Summary | |
|---|---|
List<Behavior> |
getBehaviors()
Gets the value of the behaviors property. |
List<Check> |
getChecks()
Gets the value of the checks property. |
List<Column> |
getColumns()
Gets the value of the columns property. |
List<Fk> |
getFks()
Gets the value of the fks property. |
List<Index> |
getIndices()
Gets the value of the indices property. |
String |
getName()
Gets the value of the name property. |
Pk |
getPk()
Gets the value of the pk property. |
List<Unique> |
getUniques()
Gets the value of the uniques property. |
void |
setName(String value)
Sets the value of the name property. |
void |
setPk(Pk value)
Sets the value of the pk property. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected Pk pk
protected List<Column> columns
protected List<Fk> fks
protected List<Index> indices
protected List<Behavior> behaviors
protected List<Unique> uniques
protected List<Check> checks
protected String name
| Constructor Detail |
|---|
public Table()
| Method Detail |
|---|
public Pk getPk()
Pkpublic void setPk(Pk value)
value - allowed object is
Pkpublic List<Column> getColumns()
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 columns property.
For example, to add a new item, do as follows:
getColumns().add(newItem);
Objects of the following type(s) are allowed in the list
Column
public List<Fk> getFks()
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 fks property.
For example, to add a new item, do as follows:
getFks().add(newItem);
Objects of the following type(s) are allowed in the list
Fk
public List<Index> getIndices()
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 indices property.
For example, to add a new item, do as follows:
getIndices().add(newItem);
Objects of the following type(s) are allowed in the list
Index
public List<Behavior> getBehaviors()
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 behaviors property.
For example, to add a new item, do as follows:
getBehaviors().add(newItem);
Objects of the following type(s) are allowed in the list
Behavior
public List<Unique> getUniques()
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 uniques property.
For example, to add a new item, do as follows:
getUniques().add(newItem);
Objects of the following type(s) are allowed in the list
Unique
public List<Check> getChecks()
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 checks property.
For example, to add a new item, do as follows:
getChecks().add(newItem);
Objects of the following type(s) are allowed in the list
Check
public String getName()
Stringpublic void setName(String value)
value - allowed object is
String
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||