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/BlockTrackType.java

268 lines
6.3 KiB
Java
Raw Normal View History

2015-11-09 04:58:17 +00:00
//
2019-04-22 23:44:22 +01:00
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
2019-04-22 23:44:22 +01:00
// Generado el: 2019.04.22 a las 11:40:52 PM BST
2015-11-09 04:58:17 +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;
/**
* Information about track in non-abstracted block based media
*
* <p>Clase Java para BlockTrackType complex type.
2015-11-09 04:58:17 +00:00
*
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
2015-11-09 04:58:17 +00:00
*
* <pre>
2019-04-22 23:44:22 +01:00
* &lt;complexType name="BlockTrackType"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Head" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Cylinder" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Sectors" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;element name="Format" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
2015-11-09 04:58:17 +00:00
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BlockTrackType", propOrder = {
"image",
"size",
"head",
"cylinder",
"startSector",
"endSector",
"sectors",
"bytesPerSector",
"checksums",
"format"
})
public class BlockTrackType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
2015-11-10 06:09:41 +00:00
@XmlElement(name = "Size")
protected long size;
2015-11-09 04:58:17 +00:00
@XmlElement(name = "Head")
protected long head;
@XmlElement(name = "Cylinder")
protected long cylinder;
@XmlElement(name = "StartSector")
protected long startSector;
@XmlElement(name = "EndSector")
protected long endSector;
@XmlElement(name = "Sectors")
protected long sectors;
@XmlElement(name = "BytesPerSector")
protected int bytesPerSector;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
@XmlElement(name = "Format")
protected String format;
/**
* Obtiene el valor de la propiedad image.
2015-11-09 04:58:17 +00:00
*
* @return
* possible object is
* {@link ImageType }
*
*/
public ImageType getImage() {
return image;
}
/**
* Define el valor de la propiedad image.
2015-11-09 04:58:17 +00:00
*
* @param value
* allowed object is
* {@link ImageType }
*
*/
public void setImage(ImageType value) {
this.image = value;
}
/**
* Obtiene el valor de la propiedad size.
2015-11-09 04:58:17 +00:00
*
*/
2015-11-10 06:09:41 +00:00
public long getSize() {
2015-11-09 04:58:17 +00:00
return size;
}
/**
* Define el valor de la propiedad size.
2015-11-09 04:58:17 +00:00
*
*/
2015-11-10 06:09:41 +00:00
public void setSize(long value) {
2015-11-09 04:58:17 +00:00
this.size = value;
}
/**
* Obtiene el valor de la propiedad head.
2015-11-09 04:58:17 +00:00
*
*/
public long getHead() {
return head;
}
/**
* Define el valor de la propiedad head.
2015-11-09 04:58:17 +00:00
*
*/
public void setHead(long value) {
this.head = value;
}
/**
* Obtiene el valor de la propiedad cylinder.
2015-11-09 04:58:17 +00:00
*
*/
public long getCylinder() {
return cylinder;
}
/**
* Define el valor de la propiedad cylinder.
2015-11-09 04:58:17 +00:00
*
*/
public void setCylinder(long value) {
this.cylinder = value;
}
/**
* Obtiene el valor de la propiedad startSector.
2015-11-09 04:58:17 +00:00
*
*/
public long getStartSector() {
return startSector;
}
/**
* Define el valor de la propiedad startSector.
2015-11-09 04:58:17 +00:00
*
*/
public void setStartSector(long value) {
this.startSector = value;
}
/**
* Obtiene el valor de la propiedad endSector.
2015-11-09 04:58:17 +00:00
*
*/
public long getEndSector() {
return endSector;
}
/**
* Define el valor de la propiedad endSector.
2015-11-09 04:58:17 +00:00
*
*/
public void setEndSector(long value) {
this.endSector = value;
}
/**
* Obtiene el valor de la propiedad sectors.
2015-11-09 04:58:17 +00:00
*
*/
public long getSectors() {
return sectors;
}
/**
* Define el valor de la propiedad sectors.
2015-11-09 04:58:17 +00:00
*
*/
public void setSectors(long value) {
this.sectors = value;
}
/**
* Obtiene el valor de la propiedad bytesPerSector.
2015-11-09 04:58:17 +00:00
*
*/
public int getBytesPerSector() {
return bytesPerSector;
}
/**
* Define el valor de la propiedad bytesPerSector.
2015-11-09 04:58:17 +00:00
*
*/
public void setBytesPerSector(int value) {
this.bytesPerSector = value;
}
/**
* Obtiene el valor de la propiedad checksums.
2015-11-09 04:58:17 +00:00
*
* @return
* possible object is
* {@link ChecksumsType }
*
*/
public ChecksumsType getChecksums() {
return checksums;
}
/**
* Define el valor de la propiedad checksums.
2015-11-09 04:58:17 +00:00
*
* @param value
* allowed object is
* {@link ChecksumsType }
*
*/
public void setChecksums(ChecksumsType value) {
this.checksums = value;
}
/**
* Obtiene el valor de la propiedad format.
2015-11-09 04:58:17 +00:00
*
* @return
* possible object is
* {@link String }
*
*/
public String getFormat() {
return format;
}
/**
* Define el valor de la propiedad format.
2015-11-09 04:58:17 +00:00
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFormat(String value) {
this.format = value;
}
}