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.XmlType;
13:
14: /**
15: *
16: * A two-dimensional texture sampler for the GLSL profile.
17: *
18: *
19: * <p>Java class for gl_sampler2D complex type.
20: *
21: * <p>The following schema fragment specifies the expected content contained within this class.
22: *
23: * <pre>
24: * <complexType name="gl_sampler2D">
25: * <complexContent>
26: * <extension base="{http://www.collada.org/2005/11/COLLADASchema}fx_sampler2D_common">
27: * </extension>
28: * </complexContent>
29: * </complexType>
30: * </pre>
31: *
32: *
33: */
34: @XmlAccessorType(XmlAccessType.FIELD)
35: @XmlType(name="gl_sampler2D")
36: public class GlSampler2D extends FxSampler2DCommon {
37:
38: }
|