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 fx_code_profile type allows you to specify an inline block of source code.
21: *
22: *
23: * <p>Java class for fx_code_profile complex type.
24: *
25: * <p>The following schema fragment specifies the expected content contained within this class.
26: *
27: * <pre>
28: * <complexType name="fx_code_profile">
29: * <simpleContent>
30: * <extension base="<http://www.w3.org/2001/XMLSchema>string">
31: * <attribute name="sid" type="{http://www.w3.org/2001/XMLSchema}NCName" />
32: * </extension>
33: * </simpleContent>
34: * </complexType>
35: * </pre>
36: *
37: *
38: */
39: @XmlAccessorType(XmlAccessType.FIELD)
40: @XmlType(name="fx_code_profile",propOrder={"value"})
41: public class FxCodeProfile {
42:
43: @XmlValue
44: protected String value;
45: @XmlAttribute
46: @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
47: protected String sid;
48:
49: /**
50: * Gets the value of the value property.
51: *
52: * @return
53: * possible object is
54: * {@link String }
55: *
56: */
57: public String getValue() {
58: return value;
59: }
60:
61: /**
62: * Sets the value of the value property.
63: *
64: * @param value
65: * allowed object is
66: * {@link String }
67: *
68: */
69: public void setValue(String value) {
70: this .value = value;
71: }
72:
73: /**
74: * Gets the value of the sid property.
75: *
76: * @return
77: * possible object is
78: * {@link String }
79: *
80: */
81: public String getSid() {
82: return sid;
83: }
84:
85: /**
86: * Sets the value of the sid property.
87: *
88: * @param value
89: * allowed object is
90: * {@link String }
91: *
92: */
93: public void setSid(String value) {
94: this.sid = value;
95: }
96:
97: }
|