This repository has been archived on 2025-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
CICMMetadata/java/generated/SequenceType.java

181 lines
4.3 KiB
Java

//
// 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 05:27:06 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>
* &lt;complexType name="SequenceType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="DiscTitle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Disc" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="TotalDiscs">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int">
* &lt;minInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Side">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int">
* &lt;maxInclusive value="2"/>
* &lt;minInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Layer" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int">
* &lt;minInclusive value="0"/>
* &lt;maxInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}