Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 29 → Rev 30

/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/Field.java
0,0 → 1,177
 
package net.brutex.sbm.wsclient;
 
import java.math.BigInteger;
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 Field complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="Field">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="fieldID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* &lt;element name="fieldUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &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="fieldType" type="{urn:aewebservices71}Field-Type"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Field", propOrder = {
"fieldID",
"fieldUUID",
"name",
"displayName",
"fieldType"
})
public class Field {
 
@XmlElement(required = true)
protected BigInteger fieldID;
@XmlElementRef(name = "fieldUUID", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> fieldUUID;
@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;
@XmlElement(required = true)
protected FieldType fieldType;
 
/**
* Gets the value of the fieldID property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getFieldID() {
return fieldID;
}
 
/**
* Sets the value of the fieldID property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setFieldID(BigInteger value) {
this.fieldID = value;
}
 
/**
* Gets the value of the fieldUUID property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getFieldUUID() {
return fieldUUID;
}
 
/**
* Sets the value of the fieldUUID property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setFieldUUID(JAXBElement<String> value) {
this.fieldUUID = ((JAXBElement<String> ) 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 fieldType property.
*
* @return
* possible object is
* {@link FieldType }
*
*/
public FieldType getFieldType() {
return fieldType;
}
 
/**
* Sets the value of the fieldType property.
*
* @param value
* allowed object is
* {@link FieldType }
*
*/
public void setFieldType(FieldType value) {
this.fieldType = value;
}
 
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property