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: * Creates a symbolic connection between two previously defined parameters.
20: *
21: *
22: * <p>Java class for cg_connect_param complex type.
23: *
24: * <p>The following schema fragment specifies the expected content contained within this class.
25: *
26: * <pre>
27: * <complexType name="cg_connect_param">
28: * <complexContent>
29: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30: * <attribute name="ref" use="required" type="{http://www.collada.org/2005/11/COLLADASchema}cg_identifier" />
31: * </restriction>
32: * </complexContent>
33: * </complexType>
34: * </pre>
35: *
36: *
37: */
38: @XmlAccessorType(XmlAccessType.FIELD)
39: @XmlType(name="cg_connect_param")
40: public class CgConnectParam {
41:
42: @XmlAttribute(required=true)
43: @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
44: protected String ref;
45:
46: /**
47: * Gets the value of the ref property.
48: *
49: * @return
50: * possible object is
51: * {@link String }
52: *
53: */
54: public String getRef() {
55: return ref;
56: }
57:
58: /**
59: * Sets the value of the ref property.
60: *
61: * @param value
62: * allowed object is
63: * {@link String }
64: *
65: */
66: public void setRef(String value) {
67: this.ref = value;
68: }
69:
70: }
|