01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2007.03.17 at 08:38:02 AM PDT
06: //
07:
08: package org.collada.colladaschema;
09:
10: import java.util.ArrayList;
11: import java.util.List;
12: import javax.xml.bind.annotation.XmlAccessType;
13: import javax.xml.bind.annotation.XmlAccessorType;
14: import javax.xml.bind.annotation.XmlElement;
15: import javax.xml.bind.annotation.XmlList;
16: import javax.xml.bind.annotation.XmlRootElement;
17: import javax.xml.bind.annotation.XmlType;
18:
19: /**
20: * <p>Java class for anonymous complex type.
21: *
22: * <p>The following schema fragment specifies the expected content contained within this class.
23: *
24: * <pre>
25: * <complexType>
26: * <complexContent>
27: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28: * <sequence>
29: * <element name="size" type="{http://www.collada.org/2005/11/COLLADASchema}float3"/>
30: * </sequence>
31: * </restriction>
32: * </complexContent>
33: * </complexType>
34: * </pre>
35: *
36: *
37: */
38: @XmlAccessorType(XmlAccessType.FIELD)
39: @XmlType(name="",propOrder={"size"})
40: @XmlRootElement(name="ellipsoid")
41: public class Ellipsoid {
42:
43: @XmlList
44: @XmlElement(type=Double.class)
45: protected List<Double> size;
46:
47: /**
48: * Gets the value of the size property.
49: *
50: * <p>
51: * This accessor method returns a reference to the live list,
52: * not a snapshot. Therefore any modification you make to the
53: * returned list will be present inside the JAXB object.
54: * This is why there is not a <CODE>set</CODE> method for the size property.
55: *
56: * <p>
57: * For example, to add a new item, do as follows:
58: * <pre>
59: * getSize().add(newItem);
60: * </pre>
61: *
62: *
63: * <p>
64: * Objects of the following type(s) are allowed in the list
65: * {@link Double }
66: *
67: *
68: */
69: public List<Double> getSize() {
70: if (size == null) {
71: size = new ArrayList<Double>();
72: }
73: return this.size;
74: }
75:
76: }
|