130 lines
4.6 KiB
Java
130 lines
4.6 KiB
Java
//
|
|
// 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: 2017.06.08 a las 09:53:11 PM WEST
|
|
//
|
|
|
|
|
|
package generated;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
|
|
/**
|
|
* CPU architectures this set is intended to be run on
|
|
*
|
|
*
|
|
* <p>Clase Java para ArchitecturesType complex type.
|
|
*
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
|
*
|
|
* <pre>
|
|
* <complexType name="ArchitecturesType">
|
|
* <complexContent>
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
* <sequence>
|
|
* <element name="Architecture" maxOccurs="unbounded">
|
|
* <simpleType>
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
* <enumeration value="i86"/>
|
|
* <enumeration value="ia32"/>
|
|
* <enumeration value="ia64"/>
|
|
* <enumeration value="amd64"/>
|
|
* <enumeration value="4004"/>
|
|
* <enumeration value="4040"/>
|
|
* <enumeration value="8080"/>
|
|
* <enumeration value="8008"/>
|
|
* <enumeration value="8085"/>
|
|
* <enumeration value="8051"/>
|
|
* <enumeration value="i860"/>
|
|
* <enumeration value="i960"/>
|
|
* <enumeration value="apx432"/>
|
|
* <enumeration value="m68k"/>
|
|
* <enumeration value="ppc"/>
|
|
* <enumeration value="ppc64"/>
|
|
* <enumeration value="x32"/>
|
|
* <enumeration value="sparc"/>
|
|
* <enumeration value="sparc64"/>
|
|
* <enumeration value="arm"/>
|
|
* <enumeration value="aarch64"/>
|
|
* <enumeration value="avr"/>
|
|
* <enumeration value="pic"/>
|
|
* <enumeration value="msp430"/>
|
|
* <enumeration value="z80"/>
|
|
* <enumeration value="65816"/>
|
|
* <enumeration value="sh"/>
|
|
* <enumeration value="sh1"/>
|
|
* <enumeration value="sh2"/>
|
|
* <enumeration value="sh3"/>
|
|
* <enumeration value="sh5"/>
|
|
* <enumeration value="sh4"/>
|
|
* <enumeration value="m6800"/>
|
|
* <enumeration value="6502"/>
|
|
* <enumeration value="axp"/>
|
|
* <enumeration value="parisc"/>
|
|
* <enumeration value="mips32"/>
|
|
* <enumeration value="mips64"/>
|
|
* <enumeration value="s360"/>
|
|
* <enumeration value="s370"/>
|
|
* <enumeration value="esa390"/>
|
|
* <enumeration value="zarch"/>
|
|
* <enumeration value="pdp11"/>
|
|
* <enumeration value="vax"/>
|
|
* <enumeration value="power"/>
|
|
* </restriction>
|
|
* </simpleType>
|
|
* </element>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "ArchitecturesType", propOrder = {
|
|
"architecture"
|
|
})
|
|
public class ArchitecturesType {
|
|
|
|
@XmlElement(name = "Architecture", required = true)
|
|
protected List<String> architecture;
|
|
|
|
/**
|
|
* Gets the value of the architecture property.
|
|
*
|
|
* <p>
|
|
* This accessor method returns a reference to the live list,
|
|
* not a snapshot. Therefore any modification you make to the
|
|
* returned list will be present inside the JAXB object.
|
|
* This is why there is not a <CODE>set</CODE> method for the architecture property.
|
|
*
|
|
* <p>
|
|
* For example, to add a new item, do as follows:
|
|
* <pre>
|
|
* getArchitecture().add(newItem);
|
|
* </pre>
|
|
*
|
|
*
|
|
* <p>
|
|
* Objects of the following type(s) are allowed in the list
|
|
* {@link String }
|
|
*
|
|
*
|
|
*/
|
|
public List<String> getArchitecture() {
|
|
if (architecture == null) {
|
|
architecture = new ArrayList<String>();
|
|
}
|
|
return this.architecture;
|
|
}
|
|
|
|
}
|