org.jouvieje.bass.structures
Class BASS_DX8_GARGLE

java.lang.Object
  extended byorg.jouvieje.bass.misc.Pointer
      extended byorg.jouvieje.bass.structures.BASS_DX8_GARGLE

public class BASS_DX8_GARGLE
extends Pointer


Constructor Summary
BASS_DX8_GARGLE()
          Create an object that holds a null BASS_DX8_GARGLE.
 
Method Summary
static BASS_DX8_GARGLE create()
          Create a new BASS_DX8_GARGLE.
static BASS_DX8_GARGLE createView(Pointer pointer)
          Create a view of the Pointer object as a BASS_DX8_GARGLE object.
 int getDwRateHz()
           
 int getDwWaveShape()
           
 void release()
           
 void setDwRateHz(int dwRateHz)
           
 void setDwWaveShape(int dwWaveShape)
           
 
Methods inherited from class org.jouvieje.bass.misc.Pointer
asDouble, asFloat, asInt, asLong, asString, equals, isNull, shareMemory
 
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BASS_DX8_GARGLE

public BASS_DX8_GARGLE()
Create an object that holds a null BASS_DX8_GARGLE.
The call isNull() on the object created will returns true.
  BASS_DX8_GARGLE obj = new BASS_DX8_GARGLE();
  (obj == null) <=> false
  obj.isNull() <=> true
 
To creates a new BASS_DX8_GARGLE, use the static "constructor" :
  BASS_DX8_GARGLE obj = BASS_DX8_GARGLE.create();

See Also:
create()
Method Detail

createView

public static BASS_DX8_GARGLE createView(Pointer pointer)
Create a view of the Pointer object as a BASS_DX8_GARGLE object.
This view is valid only if the memory holded by the Pointer holds a BASS_DX8_GARGLE object.


create

public static BASS_DX8_GARGLE create()
Create a new BASS_DX8_GARGLE.
The call isNull() on the object created will return false.
  BASS_DX8_GARGLE obj = BASS_DX8_GARGLE.create();
  (obj == null) <=> obj.isNull() <=> false
 


release

public void release()

getDwRateHz

public int getDwRateHz()

setDwRateHz

public void setDwRateHz(int dwRateHz)

getDwWaveShape

public int getDwWaveShape()

setDwWaveShape

public void setDwWaveShape(int dwWaveShape)


NativeBass is an Open Source Project under GNU LGPL License
NativeBass Project - © Copyright 2007-2008 - Jérôme Jouvie (Jouvieje)
http://jerome.jouvie.free.fr/ - jerome.jouvie@gmail.com

(Documentation Copyright © Ian Luck - BASS - http://www.un4seen.com)