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

220 lines
5.2 KiB
Java
Raw Normal View History

2015-11-07 03:13:57 +00: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.
2016-01-29 23:24:53 +00:00
// Generated on: 2016.01.29 at 11:21:42 PM WET
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;
/**
* <p>Java class for PartitionType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="PartitionType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Sequence">
* &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="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="FileSystems" type="{}FileSystemsType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PartitionType", propOrder = {
"sequence",
"name",
"type",
"startSector",
"endSector",
"description",
"fileSystems"
})
public class PartitionType {
@XmlElement(name = "Sequence")
protected int sequence;
@XmlElement(name = "Name")
protected String name;
@XmlElement(name = "Type")
protected String type;
@XmlElement(name = "StartSector")
protected int startSector;
@XmlElement(name = "EndSector")
protected int endSector;
@XmlElement(name = "Description")
protected String description;
@XmlElement(name = "FileSystems", required = true)
protected FileSystemsType fileSystems;
/**
* Gets the value of the sequence property.
*
*/
public int getSequence() {
return sequence;
}
/**
* Sets the value of the sequence property.
*
*/
public void setSequence(int value) {
this.sequence = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the startSector property.
*
*/
public int getStartSector() {
return startSector;
}
/**
* Sets the value of the startSector property.
*
*/
public void setStartSector(int value) {
this.startSector = value;
}
/**
* Gets the value of the endSector property.
*
*/
public int getEndSector() {
return endSector;
}
/**
* Sets the value of the endSector property.
*
*/
public void setEndSector(int value) {
this.endSector = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the fileSystems property.
*
* @return
* possible object is
* {@link FileSystemsType }
*
*/
public FileSystemsType getFileSystems() {
return fileSystems;
}
/**
* Sets the value of the fileSystems property.
*
* @param value
* allowed object is
* {@link FileSystemsType }
*
*/
public void setFileSystems(FileSystemsType value) {
this.fileSystems = value;
}
}