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 InputLocal type is used to represent inputs that can only reference resources declared in the same document.
20: *
21: *
22: * <p>Java class for InputLocal complex type.
23: *
24: * <p>The following schema fragment specifies the expected content contained within this class.
25: *
26: * <pre>
27: * <complexType name="InputLocal">
28: * <complexContent>
29: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30: * <attribute name="semantic" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
31: * <attribute name="source" use="required" type="{http://www.collada.org/2005/11/COLLADASchema}URIFragmentType" />
32: * </restriction>
33: * </complexContent>
34: * </complexType>
35: * </pre>
36: *
37: *
38: */
39: @XmlAccessorType(XmlAccessType.FIELD)
40: @XmlType(name="InputLocal")
41: public class InputLocal {
42:
43: @XmlAttribute(required=true)
44: @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
45: protected String semantic;
46: @XmlAttribute(required=true)
47: protected String source;
48:
49: /**
50: * Gets the value of the semantic property.
51: *
52: * @return
53: * possible object is
54: * {@link String }
55: *
56: */
57: public String getSemantic() {
58: return semantic;
59: }
60:
61: /**
62: * Sets the value of the semantic property.
63: *
64: * @param value
65: * allowed object is
66: * {@link String }
67: *
68: */
69: public void setSemantic(String value) {
70: this .semantic = value;
71: }
72:
73: /**
74: * Gets the value of the source property.
75: *
76: * @return
77: * possible object is
78: * {@link String }
79: *
80: */
81: public String getSource() {
82: return source;
83: }
84:
85: /**
86: * Sets the value of the source property.
87: *
88: * @param value
89: * allowed object is
90: * {@link String }
91: *
92: */
93: public void setSource(String value) {
94: this.source = value;
95: }
96:
97: }
|