// // 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 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 AnimationObjectRef complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AnimationObjectRef"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="timeline" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="key" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="z_index" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="parent" type="{http://www.w3.org/2001/XMLSchema}int" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnimationObjectRef") public class AnimationObjectRef { @XmlAttribute(name = "id") protected Integer id; @XmlAttribute(name = "timeline") protected Integer timeline; @XmlAttribute(name = "key") protected Integer key; @XmlAttribute(name = "z_index") protected Integer zIndex; @XmlAttribute(name = "parent") protected Integer parent; /** * Gets the value of the id property. * * @return * possible object is * {@link Integer } * */ public Integer getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Integer } * */ public void setId(Integer value) { this.id = value; } /** * Gets the value of the timeline property. * * @return * possible object is * {@link Integer } * */ public Integer getTimeline() { return timeline; } /** * Sets the value of the timeline property. * * @param value * allowed object is * {@link Integer } * */ public void setTimeline(Integer value) { this.timeline = value; } /** * Gets the value of the key property. * * @return * possible object is * {@link Integer } * */ public Integer getKey() { return key; } /** * Sets the value of the key property. * * @param value * allowed object is * {@link Integer } * */ public void setKey(Integer value) { this.key = value; } /** * Gets the value of the zIndex property. * * @return * possible object is * {@link Integer } * */ public Integer getZIndex() { return zIndex; } /** * Sets the value of the zIndex property. * * @param value * allowed object is * {@link Integer } * */ public void setZIndex(Integer value) { this.zIndex = value; } /** * Gets the value of the parent property. * * @return * possible object is * {@link Integer } * */ public Integer getParent() { return parent; } /** * Sets the value of the parent property. * * @param value * allowed object is * {@link Integer } * */ public void setParent(Integer value) { this.parent = value; } }