org.tritonus.lowlevel.alsa
Class AlsaCtlCardInfo

java.lang.Object
  extended byorg.tritonus.lowlevel.alsa.AlsaCtlCardInfo

public class AlsaCtlCardInfo
extends Object

TODO:


Field Summary
(package private)  long m_lNativeHandle
          Holds the pointer to snd_ctl_card_info_t.
 
Constructor Summary
AlsaCtlCardInfo()
           
 
Method Summary
 void finalize()
           
 void free()
          Calls snd_ctl_card_info_free().
 int getCard()
          Calls snd_ctl_card_info_get_card().
 String getComponents()
          Calls snd_ctl_card_info_get_components().
 String getDriver()
          Calls snd_ctl_card_info_get_driver().
 String getId()
          Calls snd_ctl_card_info_get_id().
 String getLongname()
          Calls snd_ctl_card_info_get_longname().
 String getMixername()
          Calls snd_ctl_card_info_get_mixername().
 String getName()
          Calls snd_ctl_card_info_get_name().
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

m_lNativeHandle

long m_lNativeHandle
Holds the pointer to snd_ctl_card_info_t. for the native code. This must be long to be 64bit-clean. The access modifier is not private because this variable has to be accessed from AlsaCtl.

Constructor Detail

AlsaCtlCardInfo

public AlsaCtlCardInfo()
Method Detail

finalize

public void finalize()
Overrides:
finalize in class Object

free

public void free()
Calls snd_ctl_card_info_free().


getCard

public int getCard()
Calls snd_ctl_card_info_get_card().


getId

public String getId()
Calls snd_ctl_card_info_get_id().


getDriver

public String getDriver()
Calls snd_ctl_card_info_get_driver().


getName

public String getName()
Calls snd_ctl_card_info_get_name().


getLongname

public String getLongname()
Calls snd_ctl_card_info_get_longname().


getMixername

public String getMixername()
Calls snd_ctl_card_info_get_mixername().


getComponents

public String getComponents()
Calls snd_ctl_card_info_get_components().