// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-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: 2013.01.18 at 06:33:53 PM MEZ // package com.discobeard.spriter.dom; 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.XmlType; /** * <p>Java class for SpriterData complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SpriterData"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="folder" type="{}Folder" maxOccurs="unbounded" minOccurs="0"/> * <element name="entity" type="{}Entity" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="scml_version" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="generator" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="generator_version" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SpriterData", propOrder = { "folder", "entity" }) public class SpriterData { protected List<Folder> folder; protected List<Entity> entity; @XmlAttribute(name = "scml_version") protected String scmlVersion; @XmlAttribute(name = "generator") protected String generator; @XmlAttribute(name = "generator_version") protected String generatorVersion; /** * Gets the value of the folder 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 folder property. * * <p> * For example, to add a new item, do as follows: * <pre> * getFolder().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Folder } * * */ public List<Folder> getFolder() { if (folder == null) { folder = new ArrayList<Folder>(); } return this.folder; } /** * Gets the value of the entity 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 entity property. * * <p> * For example, to add a new item, do as follows: * <pre> * getEntity().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Entity } * * */ public List<Entity> getEntity() { if (entity == null) { entity = new ArrayList<Entity>(); } return this.entity; } /** * Gets the value of the scmlVersion property. * * @return * possible object is * {@link String } * */ public String getScmlVersion() { return scmlVersion; } /** * Sets the value of the scmlVersion property. * * @param value * allowed object is * {@link String } * */ public void setScmlVersion(String value) { this.scmlVersion = value; } /** * Gets the value of the generator property. * * @return * possible object is * {@link String } * */ public String getGenerator() { return generator; } /** * Sets the value of the generator property. * * @param value * allowed object is * {@link String } * */ public void setGenerator(String value) { this.generator = value; } /** * Gets the value of the generatorVersion property. * * @return * possible object is * {@link String } * */ public String getGeneratorVersion() { return generatorVersion; } /** * Sets the value of the generatorVersion property. * * @param value * allowed object is * {@link String } * */ public void setGeneratorVersion(String value) { this.generatorVersion = value; } }