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.math.BigInteger;
011: import java.util.ArrayList;
012: import java.util.List;
013: import javax.xml.bind.annotation.XmlAccessType;
014: import javax.xml.bind.annotation.XmlAccessorType;
015: import javax.xml.bind.annotation.XmlAttribute;
016: import javax.xml.bind.annotation.XmlType;
017: import javax.xml.bind.annotation.XmlValue;
018:
019: /**
020: * <p>Java class for fx_clearcolor_common complex type.
021: *
022: * <p>The following schema fragment specifies the expected content contained within this class.
023: *
024: * <pre>
025: * <complexType name="fx_clearcolor_common">
026: * <simpleContent>
027: * <extension base="<http://www.collada.org/2005/11/COLLADASchema>fx_color_common">
028: * <attribute name="index" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" default="0" />
029: * </extension>
030: * </simpleContent>
031: * </complexType>
032: * </pre>
033: *
034: *
035: */
036: @XmlAccessorType(XmlAccessType.FIELD)
037: @XmlType(name="fx_clearcolor_common",propOrder={"values"})
038: public class FxClearcolorCommon {
039:
040: @XmlValue
041: protected List<Double> values;
042: @XmlAttribute
043: protected BigInteger index;
044:
045: /**
046: * Gets the value of the values property.
047: *
048: * <p>
049: * This accessor method returns a reference to the live list,
050: * not a snapshot. Therefore any modification you make to the
051: * returned list will be present inside the JAXB object.
052: * This is why there is not a <CODE>set</CODE> method for the values property.
053: *
054: * <p>
055: * For example, to add a new item, do as follows:
056: * <pre>
057: * getValues().add(newItem);
058: * </pre>
059: *
060: *
061: * <p>
062: * Objects of the following type(s) are allowed in the list
063: * {@link Double }
064: *
065: *
066: */
067: public List<Double> getValues() {
068: if (values == null) {
069: values = new ArrayList<Double>();
070: }
071: return this .values;
072: }
073:
074: /**
075: * Gets the value of the index property.
076: *
077: * @return
078: * possible object is
079: * {@link BigInteger }
080: *
081: */
082: public BigInteger getIndex() {
083: if (index == null) {
084: return new BigInteger("0");
085: } else {
086: return index;
087: }
088: }
089:
090: /**
091: * Sets the value of the index property.
092: *
093: * @param value
094: * allowed object is
095: * {@link BigInteger }
096: *
097: */
098: public void setIndex(BigInteger value) {
099: this.index = value;
100: }
101:
102: }
|