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

com.github.andy2003.canio.kcd.LabelGroup Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.06.24 at 08:37:14 PM CEST 
//


package com.github.andy2003.canio.kcd;

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.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://andy2003.2codeornot2code.org/1.0}BasicLabelType">
 *       <attribute name="from" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
 *       <attribute name="to" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "LabelGroup") public class LabelGroup extends BasicLabelType { @XmlAttribute(name = "from", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger from; @XmlAttribute(name = "to", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger to; /** * Gets the value of the from property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getFrom() { return from; } /** * Sets the value of the from property. * * @param value * allowed object is * {@link BigInteger } * */ public void setFrom(BigInteger value) { this.from = value; } /** * Gets the value of the to property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getTo() { return to; } /** * Sets the value of the to property. * * @param value * allowed object is * {@link BigInteger } * */ public void setTo(BigInteger value) { this.to = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy