All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.virtualbox_4_2.jaxws.IVirtualSystemDescriptionGetDescriptionResponse Maven / Gradle / Ivy

The newest version!

package org.virtualbox_4_2.jaxws;

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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="aTypes" type="{http://www.virtualbox.org/}VirtualSystemDescriptionType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="aRefs" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="aOvfValues" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="aVBoxValues" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="aExtraConfigValues" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "aTypes", "aRefs", "aOvfValues", "avBoxValues", "aExtraConfigValues" }) @XmlRootElement(name = "IVirtualSystemDescription_getDescriptionResponse") public class IVirtualSystemDescriptionGetDescriptionResponse { protected List aTypes; protected List aRefs; protected List aOvfValues; @XmlElement(name = "aVBoxValues") protected List avBoxValues; protected List aExtraConfigValues; /** * Gets the value of the aTypes 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 aTypes property. * *

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

     *    getATypes().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VirtualSystemDescriptionType } * * */ public List getATypes() { if (aTypes == null) { aTypes = new ArrayList(); } return this.aTypes; } /** * Gets the value of the aRefs 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 aRefs property. * *

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

     *    getARefs().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getARefs() { if (aRefs == null) { aRefs = new ArrayList(); } return this.aRefs; } /** * Gets the value of the aOvfValues 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 aOvfValues property. * *

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

     *    getAOvfValues().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getAOvfValues() { if (aOvfValues == null) { aOvfValues = new ArrayList(); } return this.aOvfValues; } /** * Gets the value of the avBoxValues 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 avBoxValues property. * *

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

     *    getAVBoxValues().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getAVBoxValues() { if (avBoxValues == null) { avBoxValues = new ArrayList(); } return this.avBoxValues; } /** * Gets the value of the aExtraConfigValues 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 aExtraConfigValues property. * *

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

     *    getAExtraConfigValues().add(newItem);
     * 
* * *

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy