org.virtualbox_4_2.jaxws.IMediumFormatDescribePropertiesResponse Maven / Gradle / Ivy
Show all versions of vboxjws Show documentation
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.XmlSchemaType;
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="names" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="types" type="{http://www.virtualbox.org/}DataType" maxOccurs="unbounded" minOccurs="0"/>
* <element name="flags" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" maxOccurs="unbounded" minOccurs="0"/>
* <element name="defaults" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"names",
"description",
"types",
"flags",
"defaults"
})
@XmlRootElement(name = "IMediumFormat_describePropertiesResponse")
public class IMediumFormatDescribePropertiesResponse {
protected List names;
protected List description;
protected List types;
@XmlElement(type = Long.class)
@XmlSchemaType(name = "unsignedInt")
protected List flags;
protected List defaults;
/**
* Gets the value of the names 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 names property.
*
*
* For example, to add a new item, do as follows:
*
* getNames().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getNames() {
if (names == null) {
names = new ArrayList();
}
return this.names;
}
/**
* Gets the value of the description 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 description property.
*
*
* For example, to add a new item, do as follows:
*
* getDescription().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getDescription() {
if (description == null) {
description = new ArrayList();
}
return this.description;
}
/**
* Gets the value of the types 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 types property.
*
*
* For example, to add a new item, do as follows:
*
* getTypes().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DataType }
*
*
*/
public List getTypes() {
if (types == null) {
types = new ArrayList();
}
return this.types;
}
/**
* Gets the value of the flags 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 flags property.
*
*
* For example, to add a new item, do as follows:
*
* getFlags().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Long }
*
*
*/
public List getFlags() {
if (flags == null) {
flags = new ArrayList();
}
return this.flags;
}
/**
* Gets the value of the defaults 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 defaults property.
*
*
* For example, to add a new item, do as follows:
*
* getDefaults().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getDefaults() {
if (defaults == null) {
defaults = new ArrayList();
}
return this.defaults;
}
}