com.vmware.vim25.VirtualMachineDisplayTopology Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VirtualMachineDisplayTopology complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineDisplayTopology">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineDisplayTopology", propOrder = {
"x",
"y",
"width",
"height"
})
public class VirtualMachineDisplayTopology
extends DynamicData
{
protected int x;
protected int y;
protected int width;
protected int height;
/**
* Gets the value of the x property.
*
*/
public int getX() {
return x;
}
/**
* Sets the value of the x property.
*
*/
public void setX(int value) {
this.x = value;
}
/**
* Gets the value of the y property.
*
*/
public int getY() {
return y;
}
/**
* Sets the value of the y property.
*
*/
public void setY(int value) {
this.y = value;
}
/**
* Gets the value of the width property.
*
*/
public int getWidth() {
return width;
}
/**
* Sets the value of the width property.
*
*/
public void setWidth(int value) {
this.width = value;
}
/**
* Gets the value of the height property.
*
*/
public int getHeight() {
return height;
}
/**
* Sets the value of the height property.
*
*/
public void setHeight(int value) {
this.height = value;
}
}