org.virtualbox_4_1
Class IAudioAdapter

java.lang.Object
  extended by org.virtualbox_4_1.IUnknown
      extended by org.virtualbox_4_1.IAudioAdapter

public class IAudioAdapter
extends IUnknown

The IAudioAdapter interface represents the virtual audio adapter of the virtual machine. Used in IMachine.getAudioAdapter(). Interface ID: {921873DB-5F3F-4B69-91F9-7BE9E535A2CB}


Field Summary
 
Fields inherited from class org.virtualbox_4_1.IUnknown
obj, port
 
Constructor Summary
IAudioAdapter(java.lang.String wrapped, org.virtualbox_4_1.jaxws.VboxPortType port)
           
 
Method Summary
 AudioControllerType getAudioController()
          The audio hardware we emulate.
 AudioDriverType getAudioDriver()
          Audio driver the adapter is connected to.
 java.lang.Boolean getEnabled()
          Flag whether the audio adapter is present in the guest system.
static IAudioAdapter queryInterface(IUnknown obj)
           
 void setAudioController(AudioControllerType value)
          The audio hardware we emulate.
 void setAudioDriver(AudioDriverType value)
          Audio driver the adapter is connected to.
 void setEnabled(java.lang.Boolean value)
          Flag whether the audio adapter is present in the guest system.
 
Methods inherited from class org.virtualbox_4_1.IUnknown
getRemoteWSPort, getWrapped, releaseRemote
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IAudioAdapter

public IAudioAdapter(java.lang.String wrapped,
                     org.virtualbox_4_1.jaxws.VboxPortType port)
Method Detail

getEnabled

public java.lang.Boolean getEnabled()
Flag whether the audio adapter is present in the guest system. If disabled, the virtual guest hardware will not contain any audio adapter. Can only be changed when the VM is not running.

Returns:
Boolean

setEnabled

public void setEnabled(java.lang.Boolean value)
Flag whether the audio adapter is present in the guest system. If disabled, the virtual guest hardware will not contain any audio adapter. Can only be changed when the VM is not running.

Parameters:
value - Boolean

getAudioController

public AudioControllerType getAudioController()
The audio hardware we emulate.

Returns:
org.virtualbox_4_1.AudioControllerType

setAudioController

public void setAudioController(AudioControllerType value)
The audio hardware we emulate.

Parameters:
value - org.virtualbox_4_1.AudioControllerType

getAudioDriver

public AudioDriverType getAudioDriver()
Audio driver the adapter is connected to. This setting can only be changed when the VM is not running.

Returns:
org.virtualbox_4_1.AudioDriverType

setAudioDriver

public void setAudioDriver(AudioDriverType value)
Audio driver the adapter is connected to. This setting can only be changed when the VM is not running.

Parameters:
value - org.virtualbox_4_1.AudioDriverType

queryInterface

public static IAudioAdapter queryInterface(IUnknown obj)