// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.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: 2007.07.18 at 04:40:35 PM CEST // package org.fosstrak.ale.server.readers.gen; 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.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <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 ref="{}LRProperty" maxOccurs="unbounded" minOccurs="0"/> * <element name="readers" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="isComposite" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * <attribute name="readerType" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "lrProperty", "readers" }) @XmlRootElement(name = "LRSpec") public class LRSpec { @XmlElement(name = "LRProperty") protected List<LRProperty> lrProperty; protected List<String> readers; @XmlAttribute(required = true) protected boolean isComposite; @XmlAttribute protected String readerType; /** * Gets the value of the lrProperty 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 lrProperty property. * * <p> * For example, to add a new item, do as follows: * <pre> * getLRProperty().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link LRProperty } * * */ public List<LRProperty> getLRProperty() { if (lrProperty == null) { lrProperty = new ArrayList<LRProperty>(); } return this.lrProperty; } /** * Gets the value of the readers 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 readers property. * * <p> * For example, to add a new item, do as follows: * <pre> * getReaders().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getReaders() { if (readers == null) { readers = new ArrayList<String>(); } return this.readers; } /** * Gets the value of the isComposite property. * */ public boolean isIsComposite() { return isComposite; } /** * Sets the value of the isComposite property. * */ public void setIsComposite(boolean value) { this.isComposite = value; } /** * Gets the value of the readerType property. * * @return * possible object is * {@link String } * */ public String getReaderType() { return readerType; } /** * Sets the value of the readerType property. * * @param value * allowed object is * {@link String } * */ public void setReaderType(String value) { this.readerType = value; } }