// // 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Target complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Target"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice minOccurs="0"> * <element name="TargetClass" type="{}TargetClass"/> * </choice> * <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="cfg_id" type="{http://www.w3.org/2001/XMLSchema}integer" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Target", propOrder = { "targetClass" }) public class Target { @XmlElement(name = "TargetClass") protected TargetClass targetClass; @XmlAttribute protected String type; @XmlAttribute protected String label; @XmlAttribute(name = "cfg_id") protected BigInteger cfgId; /** * Gets the value of the targetClass property. * * @return * possible object is * {@link TargetClass } * */ public TargetClass getTargetClass() { return targetClass; } /** * Sets the value of the targetClass property. * * @param value * allowed object is * {@link TargetClass } * */ public void setTargetClass(TargetClass value) { this.targetClass = value; } /** * 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 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 cfgId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getCfgId() { return cfgId; } /** * Sets the value of the cfgId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setCfgId(BigInteger value) { this.cfgId = value; } }