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

com.sun.xml.ws.commons.virtualbox.IBIOSSettings Maven / Gradle / Ivy


package com.sun.xml.ws.commons.virtualbox;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for IBIOSSettings complex type. * *

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

 * <complexType name="IBIOSSettings">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="logoFadeIn" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="logoFadeOut" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="logoDisplayTime" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
 *         <element name="logoImagePath" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="bootMenuMode" type="{http://www.virtualbox.org/}BIOSBootMenuMode"/>
 *         <element name="ACPIEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="IOAPICEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="timeOffset" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="PXEDebugEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="IDEControllerType" type="{http://www.virtualbox.org/}IDEControllerType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IBIOSSettings", propOrder = { "logoFadeIn", "logoFadeOut", "logoDisplayTime", "logoImagePath", "bootMenuMode", "acpiEnabled", "ioapicEnabled", "timeOffset", "pxeDebugEnabled", "ideControllerType" }) public class IBIOSSettings { protected boolean logoFadeIn; protected boolean logoFadeOut; @XmlSchemaType(name = "unsignedInt") protected long logoDisplayTime; @XmlElement(required = true) protected String logoImagePath; @XmlElement(required = true) protected BIOSBootMenuMode bootMenuMode; @XmlElement(name = "ACPIEnabled") protected boolean acpiEnabled; @XmlElement(name = "IOAPICEnabled") protected boolean ioapicEnabled; protected long timeOffset; @XmlElement(name = "PXEDebugEnabled") protected boolean pxeDebugEnabled; @XmlElement(name = "IDEControllerType", required = true) protected IDEControllerType ideControllerType; /** * Gets the value of the logoFadeIn property. * */ public boolean isLogoFadeIn() { return logoFadeIn; } /** * Sets the value of the logoFadeIn property. * */ public void setLogoFadeIn(boolean value) { this.logoFadeIn = value; } /** * Gets the value of the logoFadeOut property. * */ public boolean isLogoFadeOut() { return logoFadeOut; } /** * Sets the value of the logoFadeOut property. * */ public void setLogoFadeOut(boolean value) { this.logoFadeOut = value; } /** * Gets the value of the logoDisplayTime property. * */ public long getLogoDisplayTime() { return logoDisplayTime; } /** * Sets the value of the logoDisplayTime property. * */ public void setLogoDisplayTime(long value) { this.logoDisplayTime = value; } /** * Gets the value of the logoImagePath property. * * @return * possible object is * {@link String } * */ public String getLogoImagePath() { return logoImagePath; } /** * Sets the value of the logoImagePath property. * * @param value * allowed object is * {@link String } * */ public void setLogoImagePath(String value) { this.logoImagePath = value; } /** * Gets the value of the bootMenuMode property. * * @return * possible object is * {@link BIOSBootMenuMode } * */ public BIOSBootMenuMode getBootMenuMode() { return bootMenuMode; } /** * Sets the value of the bootMenuMode property. * * @param value * allowed object is * {@link BIOSBootMenuMode } * */ public void setBootMenuMode(BIOSBootMenuMode value) { this.bootMenuMode = value; } /** * Gets the value of the acpiEnabled property. * */ public boolean isACPIEnabled() { return acpiEnabled; } /** * Sets the value of the acpiEnabled property. * */ public void setACPIEnabled(boolean value) { this.acpiEnabled = value; } /** * Gets the value of the ioapicEnabled property. * */ public boolean isIOAPICEnabled() { return ioapicEnabled; } /** * Sets the value of the ioapicEnabled property. * */ public void setIOAPICEnabled(boolean value) { this.ioapicEnabled = value; } /** * Gets the value of the timeOffset property. * */ public long getTimeOffset() { return timeOffset; } /** * Sets the value of the timeOffset property. * */ public void setTimeOffset(long value) { this.timeOffset = value; } /** * Gets the value of the pxeDebugEnabled property. * */ public boolean isPXEDebugEnabled() { return pxeDebugEnabled; } /** * Sets the value of the pxeDebugEnabled property. * */ public void setPXEDebugEnabled(boolean value) { this.pxeDebugEnabled = value; } /** * Gets the value of the ideControllerType property. * * @return * possible object is * {@link IDEControllerType } * */ public IDEControllerType getIDEControllerType() { return ideControllerType; } /** * Sets the value of the ideControllerType property. * * @param value * allowed object is * {@link IDEControllerType } * */ public void setIDEControllerType(IDEControllerType value) { this.ideControllerType = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy