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.XmlID;
017: import javax.xml.bind.annotation.XmlIDREF;
018: import javax.xml.bind.annotation.XmlRootElement;
019: import javax.xml.bind.annotation.XmlType;
020: import javax.xml.bind.annotation.XmlValue;
021: import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
022: import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
023:
024: /**
025: * <p>Java class for anonymous complex type.
026: *
027: * <p>The following schema fragment specifies the expected content contained within this class.
028: *
029: * <pre>
030: * <complexType>
031: * <simpleContent>
032: * <extension base="<http://www.w3.org/2001/XMLSchema>IDREFS">
033: * <attribute name="count" use="required" type="{http://www.collada.org/2005/11/COLLADASchema}uint" />
034: * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
035: * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}NCName" />
036: * </extension>
037: * </simpleContent>
038: * </complexType>
039: * </pre>
040: *
041: *
042: */
043: @XmlAccessorType(XmlAccessType.FIELD)
044: @XmlType(name="",propOrder={"values"})
045: @XmlRootElement(name="IDREF_array")
046: public class IDREFArray {
047:
048: @XmlValue
049: @XmlIDREF
050: protected List<Object> values;
051: @XmlAttribute(required=true)
052: protected BigInteger count;
053: @XmlAttribute
054: @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
055: @XmlID
056: protected String id;
057: @XmlAttribute
058: @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
059: protected String name;
060:
061: /**
062: * Gets the value of the values property.
063: *
064: * <p>
065: * This accessor method returns a reference to the live list,
066: * not a snapshot. Therefore any modification you make to the
067: * returned list will be present inside the JAXB object.
068: * This is why there is not a <CODE>set</CODE> method for the values property.
069: *
070: * <p>
071: * For example, to add a new item, do as follows:
072: * <pre>
073: * getValues().add(newItem);
074: * </pre>
075: *
076: *
077: * <p>
078: * Objects of the following type(s) are allowed in the list
079: * {@link Object }
080: *
081: *
082: */
083: public List<Object> getValues() {
084: if (values == null) {
085: values = new ArrayList<Object>();
086: }
087: return this .values;
088: }
089:
090: /**
091: * Gets the value of the count property.
092: *
093: * @return
094: * possible object is
095: * {@link BigInteger }
096: *
097: */
098: public BigInteger getCount() {
099: return count;
100: }
101:
102: /**
103: * Sets the value of the count property.
104: *
105: * @param value
106: * allowed object is
107: * {@link BigInteger }
108: *
109: */
110: public void setCount(BigInteger value) {
111: this .count = value;
112: }
113:
114: /**
115: * Gets the value of the id property.
116: *
117: * @return
118: * possible object is
119: * {@link String }
120: *
121: */
122: public String getId() {
123: return id;
124: }
125:
126: /**
127: * Sets the value of the id property.
128: *
129: * @param value
130: * allowed object is
131: * {@link String }
132: *
133: */
134: public void setId(String value) {
135: this .id = value;
136: }
137:
138: /**
139: * Gets the value of the name property.
140: *
141: * @return
142: * possible object is
143: * {@link String }
144: *
145: */
146: public String getName() {
147: return name;
148: }
149:
150: /**
151: * Sets the value of the name property.
152: *
153: * @param value
154: * allowed object is
155: * {@link String }
156: *
157: */
158: public void setName(String value) {
159: this.name = value;
160: }
161:
162: }
|