Added field for tape file block size.
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
//
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.8-b130911.1802
|
||||
// Visite <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2016.10.15 a las 10:40:02 PM WEST
|
||||
// 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
|
||||
//
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@ import javax.xml.bind.annotation.XmlType;
|
||||
/**
|
||||
* Tape file information
|
||||
*
|
||||
* <p>Clase Java para TapeFileType complex type.
|
||||
* <p>Java class for TapeFileType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="TapeFileType">
|
||||
@@ -29,6 +29,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="BlockSize" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
@@ -45,6 +46,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
"image",
|
||||
"size",
|
||||
"sequence",
|
||||
"blockSize",
|
||||
"startBlock",
|
||||
"endBlock",
|
||||
"checksums"
|
||||
@@ -57,6 +59,8 @@ public class TapeFileType {
|
||||
protected long size;
|
||||
@XmlElement(name = "Sequence")
|
||||
protected long sequence;
|
||||
@XmlElement(name = "BlockSize")
|
||||
protected long blockSize;
|
||||
@XmlElement(name = "StartBlock")
|
||||
protected long startBlock;
|
||||
@XmlElement(name = "EndBlock")
|
||||
@@ -65,7 +69,7 @@ public class TapeFileType {
|
||||
protected ChecksumsType checksums;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
* Gets the value of the image property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
@@ -77,7 +81,7 @@ public class TapeFileType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
* Sets the value of the image property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
@@ -89,7 +93,7 @@ public class TapeFileType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
* Gets the value of the size property.
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
@@ -97,7 +101,7 @@ public class TapeFileType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
* Sets the value of the size property.
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
@@ -105,7 +109,7 @@ public class TapeFileType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sequence.
|
||||
* Gets the value of the sequence property.
|
||||
*
|
||||
*/
|
||||
public long getSequence() {
|
||||
@@ -113,7 +117,7 @@ public class TapeFileType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sequence.
|
||||
* Sets the value of the sequence property.
|
||||
*
|
||||
*/
|
||||
public void setSequence(long value) {
|
||||
@@ -121,7 +125,23 @@ public class TapeFileType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startBlock.
|
||||
* Gets the value of the blockSize property.
|
||||
*
|
||||
*/
|
||||
public long getBlockSize() {
|
||||
return blockSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the blockSize property.
|
||||
*
|
||||
*/
|
||||
public void setBlockSize(long value) {
|
||||
this.blockSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the startBlock property.
|
||||
*
|
||||
*/
|
||||
public long getStartBlock() {
|
||||
@@ -129,7 +149,7 @@ public class TapeFileType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startBlock.
|
||||
* Sets the value of the startBlock property.
|
||||
*
|
||||
*/
|
||||
public void setStartBlock(long value) {
|
||||
@@ -137,7 +157,7 @@ public class TapeFileType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endBlock.
|
||||
* Gets the value of the endBlock property.
|
||||
*
|
||||
*/
|
||||
public long getEndBlock() {
|
||||
@@ -145,7 +165,7 @@ public class TapeFileType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endBlock.
|
||||
* Sets the value of the endBlock property.
|
||||
*
|
||||
*/
|
||||
public void setEndBlock(long value) {
|
||||
@@ -153,7 +173,7 @@ public class TapeFileType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
* Gets the value of the checksums property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
@@ -165,7 +185,7 @@ public class TapeFileType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
* Sets the value of the checksums property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
|
||||
Reference in New Issue
Block a user