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

com.vmware.vim25.GuestScreenInfo Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

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 GuestScreenInfo complex type. * *

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

 * <complexType name="GuestScreenInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <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 = "GuestScreenInfo", propOrder = { "width", "height" }) public class GuestScreenInfo extends DynamicData { protected int width; protected int height; /** * 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy