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

189 lines
4.6 KiB
Java
Raw Normal View History

2015-11-07 03:13:57 +00:00
//
2017-06-04 04:58:48 +01:00
// 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: 2017.06.04 at 04:57:33 AM WEST
2015-11-07 03:13:57 +00:00
//
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
2015-11-07 05:28:44 +00:00
*
2015-11-07 03:13:57 +00:00
*
2017-06-04 04:58:48 +01:00
* <p>Java class for SequenceType complex type.
2015-11-07 03:13:57 +00:00
*
2017-06-04 04:58:48 +01:00
* <p>The following schema fragment specifies the expected content contained within this class.
2015-11-07 03:13:57 +00:00
*
* <pre>
* &lt;complexType name="SequenceType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
2015-11-09 04:58:17 +00:00
* &lt;element name="MediaTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="MediaSequence" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="TotalMedia">
2015-11-07 03:13:57 +00:00
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int">
* &lt;minInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
2015-11-09 04:58:17 +00:00
* &lt;element name="Side" minOccurs="0">
2015-11-07 03:13:57 +00:00
* &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 = {
2015-11-09 04:58:17 +00:00
"mediaTitle",
"mediaSequence",
"totalMedia",
2015-11-07 03:13:57 +00:00
"side",
"layer"
})
public class SequenceType {
2015-11-09 04:58:17 +00:00
@XmlElement(name = "MediaTitle")
protected String mediaTitle;
@XmlElement(name = "MediaSequence")
protected int mediaSequence;
@XmlElement(name = "TotalMedia")
protected int totalMedia;
2015-11-07 03:13:57 +00:00
@XmlElement(name = "Side")
2015-11-09 04:58:17 +00:00
protected Integer side;
2015-11-07 03:13:57 +00:00
@XmlElement(name = "Layer")
protected Integer layer;
/**
2017-06-04 04:58:48 +01:00
* Gets the value of the mediaTitle property.
2015-11-07 03:13:57 +00:00
*
* @return
* possible object is
* {@link String }
*
*/
2015-11-09 04:58:17 +00:00
public String getMediaTitle() {
return mediaTitle;
2015-11-07 03:13:57 +00:00
}
/**
2017-06-04 04:58:48 +01:00
* Sets the value of the mediaTitle property.
2015-11-07 03:13:57 +00:00
*
* @param value
* allowed object is
* {@link String }
*
*/
2015-11-09 04:58:17 +00:00
public void setMediaTitle(String value) {
this.mediaTitle = value;
2015-11-07 03:13:57 +00:00
}
/**
2017-06-04 04:58:48 +01:00
* Gets the value of the mediaSequence property.
2015-11-07 03:13:57 +00:00
*
*/
2015-11-09 04:58:17 +00:00
public int getMediaSequence() {
return mediaSequence;
2015-11-07 03:13:57 +00:00
}
/**
2017-06-04 04:58:48 +01:00
* Sets the value of the mediaSequence property.
2015-11-07 03:13:57 +00:00
*
*/
2015-11-09 04:58:17 +00:00
public void setMediaSequence(int value) {
this.mediaSequence = value;
2015-11-07 03:13:57 +00:00
}
/**
2017-06-04 04:58:48 +01:00
* Gets the value of the totalMedia property.
2015-11-07 03:13:57 +00:00
*
*/
2015-11-09 04:58:17 +00:00
public int getTotalMedia() {
return totalMedia;
2015-11-07 03:13:57 +00:00
}
/**
2017-06-04 04:58:48 +01:00
* Sets the value of the totalMedia property.
2015-11-07 03:13:57 +00:00
*
*/
2015-11-09 04:58:17 +00:00
public void setTotalMedia(int value) {
this.totalMedia = value;
2015-11-07 03:13:57 +00:00
}
/**
2017-06-04 04:58:48 +01:00
* Gets the value of the side property.
2015-11-07 03:13:57 +00:00
*
2015-11-09 04:58:17 +00:00
* @return
* possible object is
* {@link Integer }
*
2015-11-07 03:13:57 +00:00
*/
2015-11-09 04:58:17 +00:00
public Integer getSide() {
2015-11-07 03:13:57 +00:00
return side;
}
/**
2017-06-04 04:58:48 +01:00
* Sets the value of the side property.
2015-11-07 03:13:57 +00:00
*
2015-11-09 04:58:17 +00:00
* @param value
* allowed object is
* {@link Integer }
*
2015-11-07 03:13:57 +00:00
*/
2015-11-09 04:58:17 +00:00
public void setSide(Integer value) {
2015-11-07 03:13:57 +00:00
this.side = value;
}
/**
2017-06-04 04:58:48 +01:00
* Gets the value of the layer property.
2015-11-07 03:13:57 +00:00
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getLayer() {
return layer;
}
/**
2017-06-04 04:58:48 +01:00
* Sets the value of the layer property.
2015-11-07 03:13:57 +00:00
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setLayer(Integer value) {
this.layer = value;
}
}