All Downloads are FREE. Search and download functionalities are using the official Maven repository.

au.com.sparxsystems.AttributeProperties Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.09.13 at 12:06:48 PM EST 
//


package au.com.sparxsystems;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for AttributeProperties complex type. * *

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

 * <complexType name="AttributeProperties">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="derived" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="precision" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="collection" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="duplicates" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="changeability" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="length" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttributeProperties") public class AttributeProperties { @XmlAttribute(name = "type") protected String type; @XmlAttribute(name = "derived") protected String derived; @XmlAttribute(name = "precision") protected String precision; @XmlAttribute(name = "collection", namespace = "http://www.sparxsystems.com.au/ext") protected Boolean collection; @XmlAttribute(name = "duplicates", namespace = "http://www.sparxsystems.com.au/ext") protected String duplicates; @XmlAttribute(name = "changeability", namespace = "http://www.sparxsystems.com.au/ext") protected String changeability; @XmlAttribute(name = "length") protected Integer length; /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the derived property. * * @return * possible object is * {@link String } * */ public String getDerived() { return derived; } /** * Sets the value of the derived property. * * @param value * allowed object is * {@link String } * */ public void setDerived(String value) { this.derived = value; } /** * Gets the value of the precision property. * * @return * possible object is * {@link String } * */ public String getPrecision() { return precision; } /** * Sets the value of the precision property. * * @param value * allowed object is * {@link String } * */ public void setPrecision(String value) { this.precision = value; } /** * Gets the value of the collection property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCollection() { return collection; } /** * Sets the value of the collection property. * * @param value * allowed object is * {@link Boolean } * */ public void setCollection(Boolean value) { this.collection = value; } /** * Gets the value of the duplicates property. * * @return * possible object is * {@link String } * */ public String getDuplicates() { return duplicates; } /** * Sets the value of the duplicates property. * * @param value * allowed object is * {@link String } * */ public void setDuplicates(String value) { this.duplicates = value; } /** * Gets the value of the changeability property. * * @return * possible object is * {@link String } * */ public String getChangeability() { return changeability; } /** * Sets the value of the changeability property. * * @param value * allowed object is * {@link String } * */ public void setChangeability(String value) { this.changeability = value; } /** * Gets the value of the length property. * * @return * possible object is * {@link Integer } * */ public Integer getLength() { return length; } /** * Sets the value of the length property. * * @param value * allowed object is * {@link Integer } * */ public void setLength(Integer value) { this.length = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy