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