// // 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.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 Block complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Block"> * <complexContent> * <extension base="{}BaseCfgElement"> * <sequence> * <element name="Call" type="{}Call" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Block", propOrder = { "call" }) public class Block extends BaseCfgElement { @XmlElement(name = "Call") protected List<Call> call; @XmlAttribute protected String type; /** * Gets the value of the call 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 call property. * * <p> * For example, to add a new item, do as follows: * <pre> * getCall().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Call } * * */ public List<Call> getCall() { if (call == null) { call = new ArrayList<Call>(); } return this.call; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } }