// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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.08.30 at 03:25:42 PM KST // package org.oliot.model.ale; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for ECTagStat complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="ECTagStat"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="profile" type="{urn:epcglobal:ale:xsd:1}ECStatProfileName"/> * <element name="statBlocks" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="statBlock" type="{urn:epcglobal:ale:xsd:1}ECReaderStat" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ECTagStat", propOrder = { "profile", "statBlocks" }) @XmlSeeAlso({ ECTagTimestampStat.class }) public class ECTagStat { @XmlElement(required = true) protected String profile; protected ECTagStat.StatBlocks statBlocks; /** * Gets the value of the profile property. * * @return possible object is {@link String } * */ public String getProfile() { return profile; } /** * Sets the value of the profile property. * * @param value * allowed object is {@link String } * */ public void setProfile(String value) { this.profile = value; } /** * Gets the value of the statBlocks property. * * @return possible object is {@link ECTagStat.StatBlocks } * */ public ECTagStat.StatBlocks getStatBlocks() { return statBlocks; } /** * Sets the value of the statBlocks property. * * @param value * allowed object is {@link ECTagStat.StatBlocks } * */ public void setStatBlocks(ECTagStat.StatBlocks value) { this.statBlocks = value; } /** * <p> * Java class for anonymous complex type. * * <p> * The following schema fragment specifies the expected content contained * within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="statBlock" type="{urn:epcglobal:ale:xsd:1}ECReaderStat" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "statBlock" }) public static class StatBlocks { protected List<ECReaderStat> statBlock; /** * Gets the value of the statBlock property. * * <p> * This accessor method returns a reference to the live list, not a * snapshot. Therefore any modification you make to the returned list * will be present inside the JAXB object. This is why there is not a * <CODE>set</CODE> method for the statBlock property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getStatBlock().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ECReaderStat } * * */ public List<ECReaderStat> getStatBlock() { if (statBlock == null) { statBlock = new ArrayList<ECReaderStat>(); } return this.statBlock; } } }