|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jouvieje.fmodex.utils.Pointer
org.jouvieje.fmodex.structures.FMOD_DSP_PARAMETERDESC
Constructor Summary | |
FMOD_DSP_PARAMETERDESC()
Create an object that holds a null FMOD_DSP_PARAMETERDESC . |
Method Summary | |
static FMOD_DSP_PARAMETERDESC |
allocate()
Allocate a new FMOD_DSP_PARAMETERDESC . |
static FMOD_DSP_PARAMETERDESC[] |
allocate(int length)
Allocate and initialize a new FMOD_DSP_PARAMETERDESC[] . |
static FMOD_DSP_PARAMETERDESC |
asFMOD_DSP_PARAMETERDESC(Pointer pointer)
Create a view of the Pointer object as a FMOD_DSP_PARAMETERDESC object. |
float |
getDefaultVal()
[w] Default value of parameter. |
java.lang.String |
getDescription()
[w] Description of the parameter to be displayed as a help item / tooltip for this parameter. |
java.lang.String |
getLabel()
[w] Short string to be put next to value to denote the unit type (ie "hz"). |
float |
getMax()
[w] Maximum value of the parameter (ie 22050.0). |
float |
getMin()
[w] Minimum value of the parameter (ie 100.0). |
java.lang.String |
getName()
[w] Name of the parameter to be displayed (ie "Cutoff frequency"). |
void |
release()
|
void |
setDefaultVal(float defaultVal)
[w] Default value of parameter. |
void |
setDescription(java.lang.String description)
[w] Description of the parameter to be displayed as a help item / tooltip for this parameter. |
void |
setLabel(java.lang.String label)
[w] Short string to be put next to value to denote the unit type (ie "hz"). |
void |
setMax(float max)
[w] Maximum value of the parameter (ie 22050.0). |
void |
setMin(float min)
[w] Minimum value of the parameter (ie 100.0). |
void |
setName(java.lang.String name)
[w] Name of the parameter to be displayed (ie "Cutoff frequency"). |
Methods inherited from class org.jouvieje.fmodex.utils.Pointer |
asByteBuffer, asDouble, asFloat, asInt, asLong, asPointer, asString, asString, equals, isNull, shareMemory |
Methods inherited from class java.lang.Object |
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public FMOD_DSP_PARAMETERDESC()
FMOD_DSP_PARAMETERDESC
.isNull()
on the object created will returns true. FMOD_DSP_PARAMETERDESC obj = new FMOD_DSP_PARAMETERDESC();
(obj == null) <=> false
obj.isNull() <=> true
To creates a new FMOD_DSP_PARAMETERDESC
, use the static "constructor" :
FMOD_DSP_PARAMETERDESC obj = FMOD_DSP_PARAMETERDESC.allocate();
allocate()
Method Detail |
public static FMOD_DSP_PARAMETERDESC asFMOD_DSP_PARAMETERDESC(Pointer pointer)
Pointer
object as a FMOD_DSP_PARAMETERDESC
object.Pointer
holds a FMOD_DSP_PARAMETERDESC object.
public static FMOD_DSP_PARAMETERDESC[] allocate(int length)
FMOD_DSP_PARAMETERDESC[]
.
length
- length of the array returned.public static FMOD_DSP_PARAMETERDESC allocate()
FMOD_DSP_PARAMETERDESC
.isNull()
on the object created will return false. FMOD_DSP_PARAMETERDESC obj = FMOD_DSP_PARAMETERDESC.allocate();
(obj == null) <=> obj.isNull() <=> false
public void release()
public float getMin()
public void setMin(float min)
public float getMax()
public void setMax(float max)
public float getDefaultVal()
public void setDefaultVal(float defaultVal)
public java.lang.String getName()
public void setName(java.lang.String name)
public java.lang.String getLabel()
public void setLabel(java.lang.String label)
public java.lang.String getDescription()
public void setDescription(java.lang.String description)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |