001: //
002: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6
003: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
004: // Any modifications to this file will be lost upon recompilation of the source schema.
005: // Generated on: 2007.03.17 at 08:38:02 AM PDT
006: //
007:
008: package org.collada.colladaschema;
009:
010: import java.util.ArrayList;
011: import java.util.List;
012: import javax.xml.bind.annotation.XmlAccessType;
013: import javax.xml.bind.annotation.XmlAccessorType;
014: import javax.xml.bind.annotation.XmlAttribute;
015: import javax.xml.bind.annotation.XmlElement;
016: import javax.xml.bind.annotation.XmlElements;
017: import javax.xml.bind.annotation.XmlType;
018: import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
019: import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
020:
021: /**
022: *
023: * Defines a set of texturing commands that will be converted into multitexturing operations using glTexEnv in regular and combiner mode.
024: *
025: *
026: * <p>Java class for gles_texture_pipeline complex type.
027: *
028: * <p>The following schema fragment specifies the expected content contained within this class.
029: *
030: * <pre>
031: * <complexType name="gles_texture_pipeline">
032: * <complexContent>
033: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
034: * <choice maxOccurs="unbounded">
035: * <element name="texcombiner" type="{http://www.collada.org/2005/11/COLLADASchema}gles_texcombiner_command_type"/>
036: * <element name="texenv" type="{http://www.collada.org/2005/11/COLLADASchema}gles_texenv_command_type"/>
037: * <element ref="{http://www.collada.org/2005/11/COLLADASchema}extra"/>
038: * </choice>
039: * <attribute name="sid" type="{http://www.w3.org/2001/XMLSchema}NCName" />
040: * </restriction>
041: * </complexContent>
042: * </complexType>
043: * </pre>
044: *
045: *
046: */
047: @XmlAccessorType(XmlAccessType.FIELD)
048: @XmlType(name="gles_texture_pipeline",propOrder={"texcombinersAndTexenvsAndExtras"})
049: public class GlesTexturePipeline {
050:
051: @XmlElements({@XmlElement(name="texenv",type=GlesTexenvCommandType.class),@XmlElement(name="extra",type=Extra.class),@XmlElement(name="texcombiner",type=GlesTexcombinerCommandType.class)})
052: protected List<Object> texcombinersAndTexenvsAndExtras;
053: @XmlAttribute
054: @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
055: protected String sid;
056:
057: /**
058: * Gets the value of the texcombinersAndTexenvsAndExtras property.
059: *
060: * <p>
061: * This accessor method returns a reference to the live list,
062: * not a snapshot. Therefore any modification you make to the
063: * returned list will be present inside the JAXB object.
064: * This is why there is not a <CODE>set</CODE> method for the texcombinersAndTexenvsAndExtras property.
065: *
066: * <p>
067: * For example, to add a new item, do as follows:
068: * <pre>
069: * getTexcombinersAndTexenvsAndExtras().add(newItem);
070: * </pre>
071: *
072: *
073: * <p>
074: * Objects of the following type(s) are allowed in the list
075: * {@link GlesTexenvCommandType }
076: * {@link Extra }
077: * {@link GlesTexcombinerCommandType }
078: *
079: *
080: */
081: public List<Object> getTexcombinersAndTexenvsAndExtras() {
082: if (texcombinersAndTexenvsAndExtras == null) {
083: texcombinersAndTexenvsAndExtras = new ArrayList<Object>();
084: }
085: return this .texcombinersAndTexenvsAndExtras;
086: }
087:
088: /**
089: * Gets the value of the sid property.
090: *
091: * @return
092: * possible object is
093: * {@link String }
094: *
095: */
096: public String getSid() {
097: return sid;
098: }
099:
100: /**
101: * Sets the value of the sid property.
102: *
103: * @param value
104: * allowed object is
105: * {@link String }
106: *
107: */
108: public void setSid(String value) {
109: this.sid = value;
110: }
111:
112: }
|