org.plasma.text.ddl
Class Table

java.lang.Object
  extended by org.plasma.text.ddl.Table

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>
         <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  java.util.List<Behavior> behaviors
           
protected  java.util.List<Check> checks
           
protected  java.util.List<Column> columns
           
protected  java.util.List<Fk> fks
           
protected  java.util.List<Index> indices
           
protected  java.lang.String name
           
protected  Pk pk
           
protected  java.util.List<Unique> uniques
           
 
Constructor Summary
Table()
           
 
Method Summary
 java.util.List<Behavior> getBehaviors()
          Gets the value of the behaviors property.
 java.util.List<Check> getChecks()
          Gets the value of the checks property.
 java.util.List<Column> getColumns()
          Gets the value of the columns property.
 java.util.List<Fk> getFks()
          Gets the value of the fks property.
 java.util.List<Index> getIndices()
          Gets the value of the indices property.
 java.lang.String getName()
          Gets the value of the name property.
 Pk getPk()
          Gets the value of the pk property.
 java.util.List<Unique> getUniques()
          Gets the value of the uniques property.
 void setName(java.lang.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

pk

protected Pk pk

columns

protected java.util.List<Column> columns

fks

protected java.util.List<Fk> fks

indices

protected java.util.List<Index> indices

behaviors

protected java.util.List<Behavior> behaviors

uniques

protected java.util.List<Unique> uniques

checks

protected java.util.List<Check> checks

name

protected java.lang.String name
Constructor Detail

Table

public Table()
Method Detail

getPk

public Pk getPk()
Gets the value of the pk property.

Returns:
possible object is Pk

setPk

public void setPk(Pk value)
Sets the value of the pk property.

Parameters:
value - allowed object is Pk

getColumns

public java.util.List<Column> getColumns()
Gets the value of the columns 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 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


getFks

public java.util.List<Fk> getFks()
Gets the value of the fks 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 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


getIndices

public java.util.List<Index> getIndices()
Gets the value of the indices 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 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


getBehaviors

public java.util.List<Behavior> getBehaviors()
Gets the value of the behaviors 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 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


getUniques

public java.util.List<Unique> getUniques()
Gets the value of the uniques 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 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


getChecks

public java.util.List<Check> getChecks()
Gets the value of the checks 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 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


getName

public java.lang.String getName()
Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(java.lang.String value)
Sets the value of the name property.

Parameters:
value - allowed object is String


Copyright © 2013. All Rights Reserved.