Initial commit
This commit is contained in:
179
java/generated/SequenceType.java
Normal file
179
java/generated/SequenceType.java
Normal file
@@ -0,0 +1,179 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// 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: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Sequence information about a disc
|
||||
*
|
||||
* <p>Java class for SequenceType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SequenceType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DiscTitle" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Disc" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="TotalDiscs">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Side">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <maxInclusive value="2"/>
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Layer" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <minInclusive value="0"/>
|
||||
* <maxInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SequenceType", propOrder = {
|
||||
"discTitle",
|
||||
"disc",
|
||||
"totalDiscs",
|
||||
"side",
|
||||
"layer"
|
||||
})
|
||||
public class SequenceType {
|
||||
|
||||
@XmlElement(name = "DiscTitle", required = true)
|
||||
protected String discTitle;
|
||||
@XmlElement(name = "Disc")
|
||||
protected int disc;
|
||||
@XmlElement(name = "TotalDiscs")
|
||||
protected int totalDiscs;
|
||||
@XmlElement(name = "Side")
|
||||
protected int side;
|
||||
@XmlElement(name = "Layer")
|
||||
protected Integer layer;
|
||||
|
||||
/**
|
||||
* Gets the value of the discTitle property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDiscTitle() {
|
||||
return discTitle;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the discTitle property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDiscTitle(String value) {
|
||||
this.discTitle = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the disc property.
|
||||
*
|
||||
*/
|
||||
public int getDisc() {
|
||||
return disc;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the disc property.
|
||||
*
|
||||
*/
|
||||
public void setDisc(int value) {
|
||||
this.disc = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the totalDiscs property.
|
||||
*
|
||||
*/
|
||||
public int getTotalDiscs() {
|
||||
return totalDiscs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the totalDiscs property.
|
||||
*
|
||||
*/
|
||||
public void setTotalDiscs(int value) {
|
||||
this.totalDiscs = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the side property.
|
||||
*
|
||||
*/
|
||||
public int getSide() {
|
||||
return side;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the side property.
|
||||
*
|
||||
*/
|
||||
public void setSide(int value) {
|
||||
this.side = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the layer property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getLayer() {
|
||||
return layer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the layer property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setLayer(Integer value) {
|
||||
this.layer = value;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user