// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.11.09 at 04:57:50 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 * * *

Java class for ArchitecturesType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ArchitecturesType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Architecture">
 *           <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>
 * 
* * */ @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; } }