org.virtualbox_4_2.jaxws.IGuestDragGHPendingResponse 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.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="format" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="allowedActions" type="{http://www.virtualbox.org/}DragAndDropAction" maxOccurs="unbounded" minOccurs="0"/>
* <element name="returnval" type="{http://www.virtualbox.org/}DragAndDropAction"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"format",
"allowedActions",
"returnval"
})
@XmlRootElement(name = "IGuest_dragGHPendingResponse")
public class IGuestDragGHPendingResponse {
protected List format;
protected List allowedActions;
@XmlElement(required = true)
protected DragAndDropAction returnval;
/**
* Gets the value of the format 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 format property.
*
*
* For example, to add a new item, do as follows:
*
* getFormat().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getFormat() {
if (format == null) {
format = new ArrayList();
}
return this.format;
}
/**
* Gets the value of the allowedActions 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 allowedActions property.
*
*
* For example, to add a new item, do as follows:
*
* getAllowedActions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DragAndDropAction }
*
*
*/
public List getAllowedActions() {
if (allowedActions == null) {
allowedActions = new ArrayList();
}
return this.allowedActions;
}
/**
* Gets the value of the returnval property.
*
* @return
* possible object is
* {@link DragAndDropAction }
*
*/
public DragAndDropAction getReturnval() {
return returnval;
}
/**
* Sets the value of the returnval property.
*
* @param value
* allowed object is
* {@link DragAndDropAction }
*
*/
public void setReturnval(DragAndDropAction value) {
this.returnval = value;
}
}