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.adapters.CollapsedStringAdapter;
15: import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
16:
17: /**
18: *
19: * The include element is used to import source code or precompiled binary shaders into the FX Runtime by referencing an external resource.
20: *
21: *
22: * <p>Java class for fx_include_common complex type.
23: *
24: * <p>The following schema fragment specifies the expected content contained within this class.
25: *
26: * <pre>
27: * <complexType name="fx_include_common">
28: * <complexContent>
29: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30: * <attribute name="sid" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
31: * <attribute name="url" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
32: * </restriction>
33: * </complexContent>
34: * </complexType>
35: * </pre>
36: *
37: *
38: */
39: @XmlAccessorType(XmlAccessType.FIELD)
40: @XmlType(name="fx_include_common")
41: public class FxIncludeCommon {
42:
43: @XmlAttribute(required=true)
44: @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
45: protected String sid;
46: @XmlAttribute(required=true)
47: protected String url;
48:
49: /**
50: * Gets the value of the sid property.
51: *
52: * @return
53: * possible object is
54: * {@link String }
55: *
56: */
57: public String getSid() {
58: return sid;
59: }
60:
61: /**
62: * Sets the value of the sid property.
63: *
64: * @param value
65: * allowed object is
66: * {@link String }
67: *
68: */
69: public void setSid(String value) {
70: this .sid = value;
71: }
72:
73: /**
74: * Gets the value of the url property.
75: *
76: * @return
77: * possible object is
78: * {@link String }
79: *
80: */
81: public String getUrl() {
82: return url;
83: }
84:
85: /**
86: * Sets the value of the url property.
87: *
88: * @param value
89: * allowed object is
90: * {@link String }
91: *
92: */
93: public void setUrl(String value) {
94: this.url = value;
95: }
96:
97: }
|