001: //
002: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6
003: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
004: // Any modifications to this file will be lost upon recompilation of the source schema.
005: // Generated on: 2007.03.17 at 08:38:02 AM PDT
006: //
007:
008: package org.collada.colladaschema;
009:
010: import javax.xml.bind.annotation.XmlAccessType;
011: import javax.xml.bind.annotation.XmlAccessorType;
012: import javax.xml.bind.annotation.XmlAttribute;
013: import javax.xml.bind.annotation.XmlIDREF;
014: import javax.xml.bind.annotation.XmlType;
015:
016: /**
017: * For 1D, 2D, RECT surface types
018: *
019: * <p>Java class for fx_surface_init_planar_common complex type.
020: *
021: * <p>The following schema fragment specifies the expected content contained within this class.
022: *
023: * <pre>
024: * <complexType name="fx_surface_init_planar_common">
025: * <complexContent>
026: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027: * <choice>
028: * <element name="all">
029: * <complexType>
030: * <complexContent>
031: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
032: * <attribute name="ref" use="required" type="{http://www.w3.org/2001/XMLSchema}IDREF" />
033: * </restriction>
034: * </complexContent>
035: * </complexType>
036: * </element>
037: * </choice>
038: * </restriction>
039: * </complexContent>
040: * </complexType>
041: * </pre>
042: *
043: *
044: */
045: @XmlAccessorType(XmlAccessType.FIELD)
046: @XmlType(name="fx_surface_init_planar_common",propOrder={"all"})
047: public class FxSurfaceInitPlanarCommon {
048:
049: protected FxSurfaceInitPlanarCommon.All all;
050:
051: /**
052: * Gets the value of the all property.
053: *
054: * @return
055: * possible object is
056: * {@link FxSurfaceInitPlanarCommon.All }
057: *
058: */
059: public FxSurfaceInitPlanarCommon.All getAll() {
060: return all;
061: }
062:
063: /**
064: * Sets the value of the all property.
065: *
066: * @param value
067: * allowed object is
068: * {@link FxSurfaceInitPlanarCommon.All }
069: *
070: */
071: public void setAll(FxSurfaceInitPlanarCommon.All value) {
072: this .all = value;
073: }
074:
075: /**
076: * <p>Java class for anonymous complex type.
077: *
078: * <p>The following schema fragment specifies the expected content contained within this class.
079: *
080: * <pre>
081: * <complexType>
082: * <complexContent>
083: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
084: * <attribute name="ref" use="required" type="{http://www.w3.org/2001/XMLSchema}IDREF" />
085: * </restriction>
086: * </complexContent>
087: * </complexType>
088: * </pre>
089: *
090: *
091: */
092: @XmlAccessorType(XmlAccessType.FIELD)
093: @XmlType(name="")
094: public static class All {
095:
096: @XmlAttribute(required=true)
097: @XmlIDREF
098: protected Object ref;
099:
100: /**
101: * Gets the value of the ref property.
102: *
103: * @return
104: * possible object is
105: * {@link Object }
106: *
107: */
108: public Object getRef() {
109: return ref;
110: }
111:
112: /**
113: * Sets the value of the ref property.
114: *
115: * @param value
116: * allowed object is
117: * {@link Object }
118: *
119: */
120: public void setRef(Object value) {
121: this.ref = value;
122: }
123:
124: }
125:
126: }
|