Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 29 → Rev 30

/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/TableData.java
0,0 → 1,267
 
package net.brutex.sbm.wsclient;
 
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
 
 
/**
* <p>Java class for TableData complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="TableData">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="tableID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* &lt;element name="tableUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="solutionID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* &lt;element name="type" type="{urn:aewebservices71}Table-Type"/>
* &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="fieldList" type="{urn:aewebservices71}Field" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TableData", propOrder = {
"tableID",
"tableUUID",
"solutionID",
"type",
"name",
"displayName",
"description",
"fieldList"
})
public class TableData {
 
@XmlElement(required = true)
protected BigInteger tableID;
@XmlElementRef(name = "tableUUID", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> tableUUID;
@XmlElement(required = true)
protected BigInteger solutionID;
@XmlElement(required = true)
protected TableType type;
@XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> name;
@XmlElementRef(name = "displayName", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> displayName;
@XmlElementRef(name = "description", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> description;
protected List<Field> fieldList;
 
/**
* Gets the value of the tableID property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getTableID() {
return tableID;
}
 
/**
* Sets the value of the tableID property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setTableID(BigInteger value) {
this.tableID = value;
}
 
/**
* Gets the value of the tableUUID property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getTableUUID() {
return tableUUID;
}
 
/**
* Sets the value of the tableUUID property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setTableUUID(JAXBElement<String> value) {
this.tableUUID = ((JAXBElement<String> ) value);
}
 
/**
* Gets the value of the solutionID property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getSolutionID() {
return solutionID;
}
 
/**
* Sets the value of the solutionID property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSolutionID(BigInteger value) {
this.solutionID = value;
}
 
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link TableType }
*
*/
public TableType getType() {
return type;
}
 
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link TableType }
*
*/
public void setType(TableType value) {
this.type = value;
}
 
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getName() {
return name;
}
 
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setName(JAXBElement<String> value) {
this.name = ((JAXBElement<String> ) value);
}
 
/**
* Gets the value of the displayName property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getDisplayName() {
return displayName;
}
 
/**
* Sets the value of the displayName property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setDisplayName(JAXBElement<String> value) {
this.displayName = ((JAXBElement<String> ) value);
}
 
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getDescription() {
return description;
}
 
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setDescription(JAXBElement<String> value) {
this.description = ((JAXBElement<String> ) value);
}
 
/**
* Gets the value of the fieldList property.
*
* <p>
* 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 <CODE>set</CODE> method for the fieldList property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getFieldList().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Field }
*
*
*/
public List<Field> getFieldList() {
if (fieldList == null) {
fieldList = new ArrayList<Field>();
}
return this.fieldList;
}
 
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property