// // 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.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * <p> * Java class for ECReportGroupListMemberExtension complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="ECReportGroupListMemberExtension"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="fieldList" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="field" type="{urn:epcglobal:ale:xsd:1}ECReportMemberField" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="stats" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="stat" type="{urn:epcglobal:ale:xsd:1}ECTagStat" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="extension" type="{urn:epcglobal:ale:xsd:1}ECReportGroupListMemberExtension2" minOccurs="0"/> * </sequence> * <anyAttribute processContents='lax'/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ECReportGroupListMemberExtension", propOrder = { "fieldList", "stats", "extension" }) public class ECReportGroupListMemberExtension { protected ECReportGroupListMemberExtension.FieldList fieldList; protected ECReportGroupListMemberExtension.Stats stats; protected ECReportGroupListMemberExtension2 extension; @XmlAnyAttribute private Map<QName, String> otherAttributes = new HashMap<QName, String>(); /** * Gets the value of the fieldList property. * * @return possible object is * {@link ECReportGroupListMemberExtension.FieldList } * */ public ECReportGroupListMemberExtension.FieldList getFieldList() { return fieldList; } /** * Sets the value of the fieldList property. * * @param value * allowed object is * {@link ECReportGroupListMemberExtension.FieldList } * */ public void setFieldList(ECReportGroupListMemberExtension.FieldList value) { this.fieldList = value; } /** * Gets the value of the stats property. * * @return possible object is {@link ECReportGroupListMemberExtension.Stats } * */ public ECReportGroupListMemberExtension.Stats getStats() { return stats; } /** * Sets the value of the stats property. * * @param value * allowed object is * {@link ECReportGroupListMemberExtension.Stats } * */ public void setStats(ECReportGroupListMemberExtension.Stats value) { this.stats = value; } /** * Gets the value of the extension property. * * @return possible object is {@link ECReportGroupListMemberExtension2 } * */ public ECReportGroupListMemberExtension2 getExtension() { return extension; } /** * Sets the value of the extension property. * * @param value * allowed object is {@link ECReportGroupListMemberExtension2 } * */ public void setExtension(ECReportGroupListMemberExtension2 value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed * property on this class. * * <p> * the map is keyed by the name of the attribute and the value is the string * value of the attribute. * * the map returned by this method is live, and you can add new attribute by * updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map<QName, String> getOtherAttributes() { return otherAttributes; } /** * <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="field" type="{urn:epcglobal:ale:xsd:1}ECReportMemberField" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "field" }) public static class FieldList { protected List<ECReportMemberField> field; /** * Gets the value of the field 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 field property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getField().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ECReportMemberField } * * */ public List<ECReportMemberField> getField() { if (field == null) { field = new ArrayList<ECReportMemberField>(); } return this.field; } } /** * <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="stat" type="{urn:epcglobal:ale:xsd:1}ECTagStat" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "stat" }) public static class Stats { protected List<ECTagStat> stat; /** * Gets the value of the stat 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 stat property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getStat().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ECTagStat } * * */ public List<ECTagStat> getStat() { if (stat == null) { stat = new ArrayList<ECTagStat>(); } return this.stat; } } }