157 lines
5.9 KiB
Java
157 lines
5.9 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: 2020.07.12 a las 10:42:39 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="4004"/>
|
|
* <enumeration value="4040"/>
|
|
* <enumeration value="6502"/>
|
|
* <enumeration value="65816"/>
|
|
* <enumeration value="8008"/>
|
|
* <enumeration value="8051"/>
|
|
* <enumeration value="8080"/>
|
|
* <enumeration value="8085"/>
|
|
* <enumeration value="aarch64"/>
|
|
* <enumeration value="am29000"/>
|
|
* <enumeration value="amd64"/>
|
|
* <enumeration value="apx432"/>
|
|
* <enumeration value="arm"/>
|
|
* <enumeration value="avr"/>
|
|
* <enumeration value="avr32"/>
|
|
* <enumeration value="axp"/>
|
|
* <enumeration value="clipper"/>
|
|
* <enumeration value="cray"/>
|
|
* <enumeration value="esa390"/>
|
|
* <enumeration value="hobbit"/>
|
|
* <enumeration value="i86"/>
|
|
* <enumeration value="i860"/>
|
|
* <enumeration value="i960"/>
|
|
* <enumeration value="ia32"/>
|
|
* <enumeration value="ia64"/>
|
|
* <enumeration value="m56k"/>
|
|
* <enumeration value="m6800"/>
|
|
* <enumeration value="m6801"/>
|
|
* <enumeration value="m6805"/>
|
|
* <enumeration value="m6809"/>
|
|
* <enumeration value="m68k"/>
|
|
* <enumeration value="m88k"/>
|
|
* <enumeration value="mcs41"/>
|
|
* <enumeration value="mcs48"/>
|
|
* <enumeration value="mips32"/>
|
|
* <enumeration value="mips64"/>
|
|
* <enumeration value="msp430"/>
|
|
* <enumeration value="nios2"/>
|
|
* <enumeration value="openrisc"/>
|
|
* <enumeration value="parisc"/>
|
|
* <enumeration value="pdp1"/>
|
|
* <enumeration value="pdp10"/>
|
|
* <enumeration value="pdp11"/>
|
|
* <enumeration value="pdp7"/>
|
|
* <enumeration value="pdp8"/>
|
|
* <enumeration value="pic"/>
|
|
* <enumeration value="power"/>
|
|
* <enumeration value="ppc"/>
|
|
* <enumeration value="ppc64"/>
|
|
* <enumeration value="prism"/>
|
|
* <enumeration value="renesasrx"/>
|
|
* <enumeration value="riscv"/>
|
|
* <enumeration value="s360"/>
|
|
* <enumeration value="s370"/>
|
|
* <enumeration value="sh"/>
|
|
* <enumeration value="sh1"/>
|
|
* <enumeration value="sh2"/>
|
|
* <enumeration value="sh3"/>
|
|
* <enumeration value="sh4"/>
|
|
* <enumeration value="sh5"/>
|
|
* <enumeration value="sh64"/>
|
|
* <enumeration value="sparc"/>
|
|
* <enumeration value="sparc64"/>
|
|
* <enumeration value="transputer"/>
|
|
* <enumeration value="vax"/>
|
|
* <enumeration value="we32000"/>
|
|
* <enumeration value="x32"/>
|
|
* <enumeration value="z80"/>
|
|
* <enumeration value="z800"/>
|
|
* <enumeration value="z8000"/>
|
|
* <enumeration value="z80000"/>
|
|
* <enumeration value="zarch"/>
|
|
* </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;
|
|
}
|
|
|
|
}
|