org.virtualbox_4_2.jaxws.IPCIAddress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vboxjws Show documentation
Show all versions of vboxjws Show documentation
VirtualBox Client API 4.2.4
package org.virtualbox_4_2.jaxws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for IPCIAddress complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="IPCIAddress">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="bus" type="{http://www.w3.org/2001/XMLSchema}short"/>
* <element name="device" type="{http://www.w3.org/2001/XMLSchema}short"/>
* <element name="devFunction" type="{http://www.w3.org/2001/XMLSchema}short"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IPCIAddress", propOrder = {
"bus",
"device",
"devFunction"
})
public class IPCIAddress {
protected short bus;
protected short device;
protected short devFunction;
/**
* Gets the value of the bus property.
*
*/
public short getBus() {
return bus;
}
/**
* Sets the value of the bus property.
*
*/
public void setBus(short value) {
this.bus = value;
}
/**
* Gets the value of the device property.
*
*/
public short getDevice() {
return device;
}
/**
* Sets the value of the device property.
*
*/
public void setDevice(short value) {
this.device = value;
}
/**
* Gets the value of the devFunction property.
*
*/
public short getDevFunction() {
return devFunction;
}
/**
* Sets the value of the devFunction property.
*
*/
public void setDevFunction(short value) {
this.devFunction = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy