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 java.math.BigInteger;
11: import javax.xml.bind.annotation.XmlAccessType;
12: import javax.xml.bind.annotation.XmlAccessorType;
13: import javax.xml.bind.annotation.XmlAttribute;
14: import javax.xml.bind.annotation.XmlType;
15: import javax.xml.bind.annotation.XmlValue;
16:
17: /**
18: * <p>Java class for fx_clearstencil_common complex type.
19: *
20: * <p>The following schema fragment specifies the expected content contained within this class.
21: *
22: * <pre>
23: * <complexType name="fx_clearstencil_common">
24: * <simpleContent>
25: * <extension base="<http://www.w3.org/2001/XMLSchema>byte">
26: * <attribute name="index" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" default="0" />
27: * </extension>
28: * </simpleContent>
29: * </complexType>
30: * </pre>
31: *
32: *
33: */
34: @XmlAccessorType(XmlAccessType.FIELD)
35: @XmlType(name="fx_clearstencil_common",propOrder={"value"})
36: public class FxClearstencilCommon {
37:
38: @XmlValue
39: protected byte value;
40: @XmlAttribute
41: protected BigInteger index;
42:
43: /**
44: * Gets the value of the value property.
45: *
46: */
47: public byte getValue() {
48: return value;
49: }
50:
51: /**
52: * Sets the value of the value property.
53: *
54: */
55: public void setValue(byte value) {
56: this .value = value;
57: }
58:
59: /**
60: * Gets the value of the index property.
61: *
62: * @return
63: * possible object is
64: * {@link BigInteger }
65: *
66: */
67: public BigInteger getIndex() {
68: if (index == null) {
69: return new BigInteger("0");
70: } else {
71: return index;
72: }
73: }
74:
75: /**
76: * Sets the value of the index property.
77: *
78: * @param value
79: * allowed object is
80: * {@link BigInteger }
81: *
82: */
83: public void setIndex(BigInteger value) {
84: this.index = value;
85: }
86:
87: }
|