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 javax.xml.bind.annotation.XmlAccessType;
11: import javax.xml.bind.annotation.XmlAccessorType;
12: import javax.xml.bind.annotation.XmlAttribute;
13: import javax.xml.bind.annotation.XmlType;
14: import javax.xml.bind.annotation.XmlValue;
15: import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
16: import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
17:
18: /**
19: *
20: * The TargetableFloat type is used to represent elements which contain a single float value which can
21: * be targeted for animation.
22: *
23: *
24: * <p>Java class for TargetableFloat complex type.
25: *
26: * <p>The following schema fragment specifies the expected content contained within this class.
27: *
28: * <pre>
29: * <complexType name="TargetableFloat">
30: * <simpleContent>
31: * <extension base="<http://www.collada.org/2005/11/COLLADASchema>float">
32: * <attribute name="sid" type="{http://www.w3.org/2001/XMLSchema}NCName" />
33: * </extension>
34: * </simpleContent>
35: * </complexType>
36: * </pre>
37: *
38: *
39: */
40: @XmlAccessorType(XmlAccessType.FIELD)
41: @XmlType(name="TargetableFloat",propOrder={"value"})
42: public class TargetableFloat {
43:
44: @XmlValue
45: protected double value;
46: @XmlAttribute
47: @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
48: protected String sid;
49:
50: /**
51: * Gets the value of the value property.
52: *
53: */
54: public double getValue() {
55: return value;
56: }
57:
58: /**
59: * Sets the value of the value property.
60: *
61: */
62: public void setValue(double value) {
63: this .value = value;
64: }
65:
66: /**
67: * Gets the value of the sid property.
68: *
69: * @return
70: * possible object is
71: * {@link String }
72: *
73: */
74: public String getSid() {
75: return sid;
76: }
77:
78: /**
79: * Sets the value of the sid property.
80: *
81: * @param value
82: * allowed object is
83: * {@link String }
84: *
85: */
86: public void setSid(String value) {
87: this.sid = value;
88: }
89:
90: }
|