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

130 lines
4.5 KiB
Java

//
// 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: 2015.11.10 at 06:09:13 AM WET
//
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>Java class for ArchitecturesType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="ArchitecturesType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Architecture" maxOccurs="unbounded">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="i86"/>
* &lt;enumeration value="ia32"/>
* &lt;enumeration value="ia64"/>
* &lt;enumeration value="amd64"/>
* &lt;enumeration value="4004"/>
* &lt;enumeration value="4040"/>
* &lt;enumeration value="8080"/>
* &lt;enumeration value="8008"/>
* &lt;enumeration value="8085"/>
* &lt;enumeration value="8051"/>
* &lt;enumeration value="i860"/>
* &lt;enumeration value="i960"/>
* &lt;enumeration value="apx432"/>
* &lt;enumeration value="m68k"/>
* &lt;enumeration value="ppc"/>
* &lt;enumeration value="ppc64"/>
* &lt;enumeration value="x32"/>
* &lt;enumeration value="sparc"/>
* &lt;enumeration value="sparc64"/>
* &lt;enumeration value="arm"/>
* &lt;enumeration value="aarch64"/>
* &lt;enumeration value="avr"/>
* &lt;enumeration value="pic"/>
* &lt;enumeration value="msp430"/>
* &lt;enumeration value="z80"/>
* &lt;enumeration value="65816"/>
* &lt;enumeration value="sh"/>
* &lt;enumeration value="sh1"/>
* &lt;enumeration value="sh2"/>
* &lt;enumeration value="sh3"/>
* &lt;enumeration value="sh5"/>
* &lt;enumeration value="sh4"/>
* &lt;enumeration value="m6800"/>
* &lt;enumeration value="6502"/>
* &lt;enumeration value="axp"/>
* &lt;enumeration value="parisc"/>
* &lt;enumeration value="mips32"/>
* &lt;enumeration value="mips64"/>
* &lt;enumeration value="s360"/>
* &lt;enumeration value="s370"/>
* &lt;enumeration value="esa390"/>
* &lt;enumeration value="zarch"/>
* &lt;enumeration value="pdp11"/>
* &lt;enumeration value="vax"/>
* &lt;enumeration value="power"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}