![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.GuestWindowsProgramSpec 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 GuestWindowsProgramSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GuestWindowsProgramSpec">
* <complexContent>
* <extension base="{urn:vim25}GuestProgramSpec">
* <sequence>
* <element name="startMinimized" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GuestWindowsProgramSpec", propOrder = {
"startMinimized"
})
public class GuestWindowsProgramSpec
extends GuestProgramSpec
{
protected boolean startMinimized;
/**
* Gets the value of the startMinimized property.
*
*/
public boolean isStartMinimized() {
return startMinimized;
}
/**
* Sets the value of the startMinimized property.
*
*/
public void setStartMinimized(boolean value) {
this.startMinimized = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy