// // 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 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.XmlElements; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Function complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Function"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice maxOccurs="unbounded" minOccurs="0"> * <element name="TryExcept" type="{}TryExcept"/> * <element name="TryFinally" type="{}TryFinally"/> * <element name="With" type="{}With"/> * <element name="Block" type="{}Block"/> * <element name="Flow" type="{}Flow"/> * <element name="For" type="{}For"/> * <element name="If" type="{}If"/> * <element name="While" type="{}While"/> * </choice> * <attribute name="cfg_id" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Function", propOrder = { "tryExceptOrTryFinallyOrWith" }) public class Function { @XmlElements({ @XmlElement(name = "Flow", type = Flow.class), @XmlElement(name = "With", type = With.class), @XmlElement(name = "If", type = If.class), @XmlElement(name = "While", type = While.class), @XmlElement(name = "TryFinally", type = TryFinally.class), @XmlElement(name = "TryExcept", type = TryExcept.class), @XmlElement(name = "Block", type = Block.class), @XmlElement(name = "For", type = For.class) }) protected List<Object> tryExceptOrTryFinallyOrWith; @XmlAttribute(name = "cfg_id") protected BigInteger cfgId; @XmlAttribute protected String name; @XmlAttribute protected String label; /** * Gets the value of the tryExceptOrTryFinallyOrWith 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 tryExceptOrTryFinallyOrWith property. * * <p> * For example, to add a new item, do as follows: * <pre> * getTryExceptOrTryFinallyOrWith().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Flow } * {@link With } * {@link If } * {@link While } * {@link TryFinally } * {@link TryExcept } * {@link Block } * {@link For } * * */ public List<Object> getTryExceptOrTryFinallyOrWith() { if (tryExceptOrTryFinallyOrWith == null) { tryExceptOrTryFinallyOrWith = new ArrayList<Object>(); } return this.tryExceptOrTryFinallyOrWith; } /** * 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; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = 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; } }