// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.02.27 at 10:05:31 PM YEKT // package ru.csu.stan.java.cfg.jaxb; 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.XmlType; /** * <p>Java class for TargetClass complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="TargetClass"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="ucr_id" type="{http://www.w3.org/2001/XMLSchema}integer" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TargetClass") public class TargetClass { @XmlAttribute protected String label; @XmlAttribute(name = "ucr_id") protected BigInteger ucrId; /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } /** * Gets the value of the ucrId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getUcrId() { return ucrId; } /** * Sets the value of the ucrId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setUcrId(BigInteger value) { this.ucrId = value; } }