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