Added block media

This commit is contained in:
2015-11-09 04:58:17 +00:00
parent 322a1a3322
commit c55b168ffd
71 changed files with 4957 additions and 280 deletions

View File

@@ -2,7 +2,7 @@
// 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.09 at 04:13:07 AM WET
// Generated on: 2015.11.09 at 04:57:50 AM WET
//
@@ -27,16 +27,16 @@ import javax.xml.bind.annotation.XmlType;
* &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;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">
* &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;element name="Side" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int">
* &lt;maxInclusive value="2"/>
@@ -62,94 +62,102 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SequenceType", propOrder = {
"discTitle",
"disc",
"totalDiscs",
"mediaTitle",
"mediaSequence",
"totalMedia",
"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 = "MediaTitle")
protected String mediaTitle;
@XmlElement(name = "MediaSequence")
protected int mediaSequence;
@XmlElement(name = "TotalMedia")
protected int totalMedia;
@XmlElement(name = "Side")
protected int side;
protected Integer side;
@XmlElement(name = "Layer")
protected Integer layer;
/**
* Gets the value of the discTitle property.
* Gets the value of the mediaTitle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDiscTitle() {
return discTitle;
public String getMediaTitle() {
return mediaTitle;
}
/**
* Sets the value of the discTitle property.
* Sets the value of the mediaTitle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDiscTitle(String value) {
this.discTitle = value;
public void setMediaTitle(String value) {
this.mediaTitle = value;
}
/**
* Gets the value of the disc property.
* Gets the value of the mediaSequence property.
*
*/
public int getDisc() {
return disc;
public int getMediaSequence() {
return mediaSequence;
}
/**
* Sets the value of the disc property.
* Sets the value of the mediaSequence property.
*
*/
public void setDisc(int value) {
this.disc = value;
public void setMediaSequence(int value) {
this.mediaSequence = value;
}
/**
* Gets the value of the totalDiscs property.
* Gets the value of the totalMedia property.
*
*/
public int getTotalDiscs() {
return totalDiscs;
public int getTotalMedia() {
return totalMedia;
}
/**
* Sets the value of the totalDiscs property.
* Sets the value of the totalMedia property.
*
*/
public void setTotalDiscs(int value) {
this.totalDiscs = value;
public void setTotalMedia(int value) {
this.totalMedia = value;
}
/**
* Gets the value of the side property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public int getSide() {
public Integer getSide() {
return side;
}
/**
* Sets the value of the side property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSide(int value) {
public void setSide(Integer value) {
this.side = value;
}