org.plasma.sdo.access.provider.jdo.Array Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.10.17 at 11:26:33 AM EDT
//
package org.plasma.sdo.access.provider.jdo;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://java.sun.com/xml/ns/jdo/jdo}extension" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attGroup ref="{http://java.sun.com/xml/ns/jdo/jdo}attlist.array"/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"extensions"
})
@XmlRootElement(name = "array")
public class Array {
@XmlElement(name = "extension")
protected List extensions;
@XmlAttribute(name = "element-type")
@XmlSchemaType(name = "anySimpleType")
protected String elementType;
@XmlAttribute(name = "embedded-element")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String embeddedElement;
@XmlAttribute(name = "dependent-element")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String dependentElement;
@XmlAttribute(name = "serialized-element")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String serializedElement;
/**
* Gets the value of the extensions 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 extensions property.
*
*
* For example, to add a new item, do as follows:
*
* getExtensions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Extension }
*
*
*/
public List getExtensions() {
if (extensions == null) {
extensions = new ArrayList();
}
return this.extensions;
}
/**
* Gets the value of the elementType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getElementType() {
return elementType;
}
/**
* Sets the value of the elementType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setElementType(String value) {
this.elementType = value;
}
/**
* Gets the value of the embeddedElement property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmbeddedElement() {
return embeddedElement;
}
/**
* Sets the value of the embeddedElement property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmbeddedElement(String value) {
this.embeddedElement = value;
}
/**
* Gets the value of the dependentElement property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDependentElement() {
return dependentElement;
}
/**
* Sets the value of the dependentElement property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDependentElement(String value) {
this.dependentElement = value;
}
/**
* Gets the value of the serializedElement property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSerializedElement() {
return serializedElement;
}
/**
* Sets the value of the serializedElement property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSerializedElement(String value) {
this.serializedElement = value;
}
}