// // 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:04:52 PM YEKT // package ru.csu.stan.java.classgen.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 AggregatedType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AggregatedType"> * <complexContent> * <extension base="{}Type"> * <attribute name="element_id" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="element_type" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AggregatedType") public class AggregatedType extends Type { @XmlAttribute(name = "element_id") protected BigInteger elementId; @XmlAttribute(name = "element_type") protected String elementType; /** * Gets the value of the elementId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getElementId() { return elementId; } /** * Sets the value of the elementId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setElementId(BigInteger value) { this.elementId = value; } /** * Gets the value of the elementType property. * * @return * possible object is * {@link String } * */ public String getElementType() { return elementType; } /** * Sets the value of the elementType property. * * @param value * allowed object is * {@link String } * */ public void setElementType(String value) { this.elementType = value; } }