// // 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 java.util.ArrayList; import java.util.List; 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 Class complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Class"> * <complexContent> * <extension base="{}BaseElement"> * <sequence> * <element name="Modifier" type="{}ModifierType" maxOccurs="unbounded" minOccurs="0"/> * <element name="Attr" type="{}Attribute" maxOccurs="unbounded" minOccurs="0"/> * <element name="Method" type="{}Method" maxOccurs="unbounded" minOccurs="0"/> * <element name="Parent" type="{}ParentClass" maxOccurs="unbounded" minOccurs="0"/> * <element name="Template" type="{}Template" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="filename" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Class", propOrder = { "modifier", "attr", "method", "parent", "template" }) public class Class extends BaseElement { @XmlElement(name = "Modifier") protected List<ModifierType> modifier; @XmlElement(name = "Attr") protected List<Attribute> attr; @XmlElement(name = "Method") protected List<Method> method; @XmlElement(name = "Parent") protected List<ParentClass> parent; @XmlElement(name = "Template") protected List<Template> template; @XmlAttribute protected BigInteger id; @XmlAttribute protected String filename; /** * Gets the value of the modifier 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 modifier property. * * <p> * For example, to add a new item, do as follows: * <pre> * getModifier().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ModifierType } * * */ public List<ModifierType> getModifier() { if (modifier == null) { modifier = new ArrayList<ModifierType>(); } return this.modifier; } /** * Gets the value of the attr 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 attr property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAttr().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Attribute } * * */ public List<Attribute> getAttr() { if (attr == null) { attr = new ArrayList<Attribute>(); } return this.attr; } /** * Gets the value of the method 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 method property. * * <p> * For example, to add a new item, do as follows: * <pre> * getMethod().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Method } * * */ public List<Method> getMethod() { if (method == null) { method = new ArrayList<Method>(); } return this.method; } /** * Gets the value of the parent 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 parent property. * * <p> * For example, to add a new item, do as follows: * <pre> * getParent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ParentClass } * * */ public List<ParentClass> getParent() { if (parent == null) { parent = new ArrayList<ParentClass>(); } return this.parent; } /** * Gets the value of the template 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 template property. * * <p> * For example, to add a new item, do as follows: * <pre> * getTemplate().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Template } * * */ public List<Template> getTemplate() { if (template == null) { template = new ArrayList<Template>(); } return this.template; } /** * Gets the value of the id property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link BigInteger } * */ public void setId(BigInteger value) { this.id = value; } /** * Gets the value of the filename property. * * @return * possible object is * {@link String } * */ public String getFilename() { return filename; } /** * Sets the value of the filename property. * * @param value * allowed object is * {@link String } * */ public void setFilename(String value) { this.filename = value; } }