// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2007.05.01 at 04:58:38 PM CEST // package generated; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

Java class for tcc_typeType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="tcc_typeType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="domain" type="{http://www.w3.org/2001/XMLSchema}IDREF" />
 *       <attribute name="max" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="min" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="precision" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *       <attribute name="qualifiers" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="size" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *       <attribute name="typeref" type="{http://www.w3.org/2001/XMLSchema}IDREF" />
 *       <attribute name="typeuid" type="{http://www.w3.org/2001/XMLSchema}ID" />
 *       <attribute name="unsigned" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tcc_typeType") public class TccTypeType { @XmlAttribute @XmlIDREF protected Object domain; @XmlAttribute protected String max; @XmlAttribute protected BigInteger min; @XmlAttribute protected String name; @XmlAttribute protected BigInteger precision; @XmlAttribute protected String qualifiers; @XmlAttribute protected BigInteger size; @XmlAttribute @XmlIDREF protected Object typeref; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID protected String typeuid; @XmlAttribute protected Boolean unsigned; /** * Gets the value of the domain property. * * @return * possible object is * {@link Object } * */ public Object getDomain() { return domain; } /** * Sets the value of the domain property. * * @param value * allowed object is * {@link Object } * */ public void setDomain(Object value) { this.domain = value; } /** * Gets the value of the max property. * * @return * possible object is * {@link String } * */ public String getMax() { return max; } /** * Sets the value of the max property. * * @param value * allowed object is * {@link String } * */ public void setMax(String value) { this.max = value; } /** * Gets the value of the min property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMin() { return min; } /** * Sets the value of the min property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMin(BigInteger value) { this.min = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the precision property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getPrecision() { return precision; } /** * Sets the value of the precision property. * * @param value * allowed object is * {@link BigInteger } * */ public void setPrecision(BigInteger value) { this.precision = value; } /** * Gets the value of the qualifiers property. * * @return * possible object is * {@link String } * */ public String getQualifiers() { return qualifiers; } /** * Sets the value of the qualifiers property. * * @param value * allowed object is * {@link String } * */ public void setQualifiers(String value) { this.qualifiers = value; } /** * Gets the value of the size property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSize(BigInteger value) { this.size = value; } /** * Gets the value of the typeref property. * * @return * possible object is * {@link Object } * */ public Object getTyperef() { return typeref; } /** * Sets the value of the typeref property. * * @param value * allowed object is * {@link Object } * */ public void setTyperef(Object value) { this.typeref = value; } /** * Gets the value of the typeuid property. * * @return * possible object is * {@link String } * */ public String getTypeuid() { return typeuid; } /** * Sets the value of the typeuid property. * * @param value * allowed object is * {@link String } * */ public void setTypeuid(String value) { this.typeuid = value; } /** * Gets the value of the unsigned property. * * @return * possible object is * {@link Boolean } * */ public Boolean isUnsigned() { return unsigned; } /** * Sets the value of the unsigned property. * * @param value * allowed object is * {@link Boolean } * */ public void setUnsigned(Boolean value) { this.unsigned = value; } }