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

123 lines
4.1 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.07 at 05:27:06 AM WET
//
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;
/**
* 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">
* &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 String architecture;
/**
* Gets the value of the architecture property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArchitecture() {
return architecture;
}
/**
* Sets the value of the architecture property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArchitecture(String value) {
this.architecture = value;
}
}