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