// // 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: 2016.01.17 at 02:08:03 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 * * *

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" 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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArchitecturesType", propOrder = { "architecture" }) public class ArchitecturesType { @XmlElement(name = "Architecture", required = true) protected List architecture; /** * Gets the value of the architecture property. * *

* 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 set method for the architecture property. * *

* For example, to add a new item, do as follows: *

     *    getArchitecture().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getArchitecture() { if (architecture == null) { architecture = new ArrayList(); } return this.architecture; } }