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