//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2007.03.17 at 08:38:02 AM PDT
//
package org.collada.colladaschema;
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.XmlID;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.collada.org/2005/11/COLLADASchema}asset" minOccurs="0"/>
* <choice minOccurs="0">
* <element ref="{http://www.collada.org/2005/11/COLLADASchema}IDREF_array"/>
* <element ref="{http://www.collada.org/2005/11/COLLADASchema}Name_array"/>
* <element ref="{http://www.collada.org/2005/11/COLLADASchema}bool_array"/>
* <element ref="{http://www.collada.org/2005/11/COLLADASchema}float_array"/>
* <element ref="{http://www.collada.org/2005/11/COLLADASchema}int_array"/>
* </choice>
* <element name="technique_common" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.collada.org/2005/11/COLLADASchema}accessor"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element ref="{http://www.collada.org/2005/11/COLLADASchema}technique" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}NCName" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"asset",
"boolArray",
"floatArray",
"nameArray",
"intArray",
"idrefArray",
"techniqueCommon",
"techniques"
})
@XmlRootElement(name = "source")
public class Source {
protected Asset asset;
@XmlElement(name = "bool_array")
protected BoolArray boolArray;
@XmlElement(name = "float_array")
protected FloatArray floatArray;
@XmlElement(name = "Name_array")
protected NameArray nameArray;
@XmlElement(name = "int_array")
protected IntArray intArray;
@XmlElement(name = "IDREF_array")
protected IDREFArray idrefArray;
@XmlElement(name = "technique_common")
protected Source.TechniqueCommon techniqueCommon;
@XmlElement(name = "technique")
protected List<Technique> techniques;
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
protected String id;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String name;
/**
*
* The source element may contain an asset element.
*
*
* @return
* possible object is
* {@link Asset }
*
*/
public Asset getAsset() {
return asset;
}
/**
*
* The source element may contain an asset element.
*
*
* @param value
* allowed object is
* {@link Asset }
*
*/
public void setAsset(Asset value) {
this.asset = value;
}
/**
*
* The source element may contain a bool_array.
*
*
* @return
* possible object is
* {@link BoolArray }
*
*/
public BoolArray getBoolArray() {
return boolArray;
}
/**
*
* The source element may contain a bool_array.
*
*
* @param value
* allowed object is
* {@link BoolArray }
*
*/
public void setBoolArray(BoolArray value) {
this.boolArray = value;
}
/**
*
* The source element may contain a float_array.
*
*
* @return
* possible object is
* {@link FloatArray }
*
*/
public FloatArray getFloatArray() {
return floatArray;
}
/**
*
* The source element may contain a float_array.
*
*
* @param value
* allowed object is
* {@link FloatArray }
*
*/
public void setFloatArray(FloatArray value) {
this.floatArray = value;
}
/**
*
* The source element may contain a Name_array.
*
*
* @return
* possible object is
* {@link NameArray }
*
*/
public NameArray getNameArray() {
return nameArray;
}
/**
*
* The source element may contain a Name_array.
*
*
* @param value
* allowed object is
* {@link NameArray }
*
*/
public void setNameArray(NameArray value) {
this.nameArray = value;
}
/**
*
* The source element may contain an int_array.
*
*
* @return
* possible object is
* {@link IntArray }
*
*/
public IntArray getIntArray() {
return intArray;
}
/**
*
* The source element may contain an int_array.
*
*
* @param value
* allowed object is
* {@link IntArray }
*
*/
public void setIntArray(IntArray value) {
this.intArray = value;
}
/**
*
* The source element may contain an IDREF_array.
*
*
* @return
* possible object is
* {@link IDREFArray }
*
*/
public IDREFArray getIDREFArray() {
return idrefArray;
}
/**
*
* The source element may contain an IDREF_array.
*
*
* @param value
* allowed object is
* {@link IDREFArray }
*
*/
public void setIDREFArray(IDREFArray value) {
this.idrefArray = value;
}
/**
* Gets the value of the techniqueCommon property.
*
* @return
* possible object is
* {@link Source.TechniqueCommon }
*
*/
public Source.TechniqueCommon getTechniqueCommon() {
return techniqueCommon;
}
/**
* Sets the value of the techniqueCommon property.
*
* @param value
* allowed object is
* {@link Source.TechniqueCommon }
*
*/
public void setTechniqueCommon(Source.TechniqueCommon value) {
this.techniqueCommon = value;
}
/**
*
* This element may contain any number of non-common profile techniques.
* Gets the value of the techniques 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 techniques property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getTechniques().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Technique }
*
*
*/
public List<Technique> getTechniques() {
if (techniques == null) {
techniques = new ArrayList<Technique>();
}
return this.techniques;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.collada.org/2005/11/COLLADASchema}accessor"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"accessor"
})
public static class TechniqueCommon {
@XmlElement(required = true)
protected Accessor accessor;
/**
*
* The source's technique_common must have one and only one accessor.
*
*
* @return
* possible object is
* {@link Accessor }
*
*/
public Accessor getAccessor() {
return accessor;
}
/**
*
* The source's technique_common must have one and only one accessor.
*
*
* @param value
* allowed object is
* {@link Accessor }
*
*/
public void setAccessor(Accessor value) {
this.accessor = value;
}
}
}
|