// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.02.14 at 10:02:37 AM CET // package it.tbridge.sincro.generated; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *
Java class for anonymous complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{}NOME_ORIGINE"/> * <element ref="{}NOME_DESTINAZIONE"/> * <element ref="{}LUNGHEZZA"/> * <element ref="{}TIPO"/> * <element ref="{}DECIMALI"/> * </sequence> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "nomeorigine", "nomedestinazione", "lunghezza", "tipo", "decimali" }) @XmlRootElement(name = "COLONNA") public class COLONNA { @XmlElement(name = "NOME_ORIGINE", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String nomeorigine; @XmlElement(name = "NOME_DESTINAZIONE", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String nomedestinazione; @XmlElement(name = "LUNGHEZZA", required = true) protected BigInteger lunghezza; @XmlElement(name = "TIPO", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String tipo; @XmlElement(name = "DECIMALI", required = true) protected BigInteger decimali; /** * Gets the value of the nomeorigine property. * * @return * possible object is * {@link String } * */ public String getNOMEORIGINE() { return nomeorigine; } /** * Sets the value of the nomeorigine property. * * @param value * allowed object is * {@link String } * */ public void setNOMEORIGINE(String value) { this.nomeorigine = value; } /** * Gets the value of the nomedestinazione property. * * @return * possible object is * {@link String } * */ public String getNOMEDESTINAZIONE() { return nomedestinazione; } /** * Sets the value of the nomedestinazione property. * * @param value * allowed object is * {@link String } * */ public void setNOMEDESTINAZIONE(String value) { this.nomedestinazione = value; } /** * Gets the value of the lunghezza property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getLUNGHEZZA() { return lunghezza; } /** * Sets the value of the lunghezza property. * * @param value * allowed object is * {@link BigInteger } * */ public void setLUNGHEZZA(BigInteger value) { this.lunghezza = value; } /** * Gets the value of the tipo property. * * @return * possible object is * {@link String } * */ public String getTIPO() { return tipo; } /** * Sets the value of the tipo property. * * @param value * allowed object is * {@link String } * */ public void setTIPO(String value) { this.tipo = value; } /** * Gets the value of the decimali property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getDECIMALI() { return decimali; } /** * Sets the value of the decimali property. * * @param value * allowed object is * {@link BigInteger } * */ public void setDECIMALI(BigInteger value) { this.decimali = value; } }