Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 29 → Rev 30

/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/ExtraValue.java
0,0 → 1,91
 
package net.brutex.sbm.wsclient;
 
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
 
 
/**
* <p>Java class for ExtraValue complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="ExtraValue">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="valueType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExtraValue", propOrder = {
"valueType",
"value"
})
public class ExtraValue {
 
@XmlElementRef(name = "valueType", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> valueType;
@XmlElementRef(name = "value", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> value;
 
/**
* Gets the value of the valueType property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getValueType() {
return valueType;
}
 
/**
* Sets the value of the valueType property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setValueType(JAXBElement<String> value) {
this.valueType = ((JAXBElement<String> ) value);
}
 
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getValue() {
return value;
}
 
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setValue(JAXBElement<String> value) {
this.value = ((JAXBElement<String> ) value);
}
 
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property