|
|||||||||||
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_DESCRIPTION
Constructor Summary | |
FMOD_DSP_DESCRIPTION()
Create an object that holds a null FMOD_DSP_DESCRIPTION . |
Method Summary | |
static FMOD_DSP_DESCRIPTION |
allocate()
Allocate a new FMOD_DSP_DESCRIPTION . |
static FMOD_DSP_DESCRIPTION |
asFMOD_DSP_DESCRIPTION(Pointer pointer)
Create a view of the Pointer object as a FMOD_DSP_DESCRIPTION object. |
int |
getChannels()
[w] Number of channels. |
FMOD_DSP_DIALOGCALLBACK |
getConfig()
[w] This is called when the user calls DSP::showConfigDialog. |
int |
getConfigHeight()
[w] Height of config dialog graphic if there is one. 0 otherwise. |
int |
getConfigWidth()
[w] Width of config dialog graphic if there is one. 0 otherwise. |
FMOD_DSP_CREATECALLBACK |
getCreate()
[w] Create callback. |
FMOD_DSP_GETPARAMCALLBACK |
getGetParameter()
[w] This is called when the user calls DSP::getParameter. |
java.lang.String |
getName()
[w] Name of the unit to be displayed in the network. |
int |
getNumParameters()
[w] Number of parameters used in this filter. |
FMOD_DSP_PARAMETERDESC[] |
getParamDesc()
[w] Variable number of parameter structures. |
FMOD_DSP_READCALLBACK |
getRead()
[w] Read callback. |
FMOD_DSP_RELEASECALLBACK |
getRelease()
[w] Release callback. |
FMOD_DSP_RESETCALLBACK |
getReset()
[w] Reset callback. |
FMOD_DSP_SETPARAMCALLBACK |
getSetParameter()
[w] This is called when the user calls DSP::setParameter. |
FMOD_DSP_SETPOSITIONCALLBACK |
getSetPosition()
[w] Set position callback. |
Pointer |
getUserData()
[w] Optional. |
int |
getVersion()
[w] Plugin writer's version number. |
void |
release()
|
void |
setChannels(int channels)
[w] Number of channels. |
void |
setConfig(FMOD_DSP_DIALOGCALLBACK config)
[w] This is called when the user calls DSP::showConfigDialog. |
void |
setConfigHeight(int configHeight)
[w] Height of config dialog graphic if there is one. 0 otherwise. |
void |
setConfigWidth(int configWidth)
[w] Width of config dialog graphic if there is one. 0 otherwise. |
void |
setCreate(FMOD_DSP_CREATECALLBACK create)
[w] Create callback. |
void |
setGetParameter(FMOD_DSP_GETPARAMCALLBACK getParameter)
[w] This is called when the user calls DSP::getParameter. |
void |
setName(java.lang.String name)
[w] Name of the unit to be displayed in the network. |
void |
setParamDesc(FMOD_DSP_PARAMETERDESC[] paramDesc)
[w] Variable number of parameter structures. |
void |
setRead(FMOD_DSP_READCALLBACK read)
[w] Read callback. |
void |
setRelease(FMOD_DSP_RELEASECALLBACK release)
[w] Release callback. |
void |
setReset(FMOD_DSP_RESETCALLBACK reset)
[w] Reset callback. |
void |
setSetParameter(FMOD_DSP_SETPARAMCALLBACK setParameter)
[w] This is called when the user calls DSP::setParameter. |
void |
setSetPosition(FMOD_DSP_SETPOSITIONCALLBACK setPosition)
[w] Set position callback. |
void |
setUserData(Pointer userData)
[w] Optional. |
void |
setVersion(int version)
[w] Plugin writer's version number. |
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_DESCRIPTION()
FMOD_DSP_DESCRIPTION
.isNull()
on the object created will returns true. FMOD_DSP_DESCRIPTION obj = new FMOD_DSP_DESCRIPTION();
(obj == null) <=> false
obj.isNull() <=> true
To creates a new FMOD_DSP_DESCRIPTION
, use the static "constructor" :
FMOD_DSP_DESCRIPTION obj = FMOD_DSP_DESCRIPTION.allocate();
allocate()
Method Detail |
public static FMOD_DSP_DESCRIPTION asFMOD_DSP_DESCRIPTION(Pointer pointer)
Pointer
object as a FMOD_DSP_DESCRIPTION
object.Pointer
holds a FMOD_DSP_DESCRIPTION object.
public static FMOD_DSP_DESCRIPTION allocate()
FMOD_DSP_DESCRIPTION
.isNull()
on the object created will return false. FMOD_DSP_DESCRIPTION obj = FMOD_DSP_DESCRIPTION.allocate();
(obj == null) <=> obj.isNull() <=> false
public void release()
public java.lang.String getName()
public void setName(java.lang.String name)
public int getVersion()
public void setVersion(int version)
public int getChannels()
public void setChannels(int channels)
public FMOD_DSP_CREATECALLBACK getCreate()
public void setCreate(FMOD_DSP_CREATECALLBACK create)
public FMOD_DSP_RELEASECALLBACK getRelease()
public void setRelease(FMOD_DSP_RELEASECALLBACK release)
public FMOD_DSP_RESETCALLBACK getReset()
public void setReset(FMOD_DSP_RESETCALLBACK reset)
public FMOD_DSP_READCALLBACK getRead()
public void setRead(FMOD_DSP_READCALLBACK read)
public FMOD_DSP_SETPOSITIONCALLBACK getSetPosition()
public void setSetPosition(FMOD_DSP_SETPOSITIONCALLBACK setPosition)
public int getNumParameters()
public FMOD_DSP_PARAMETERDESC[] getParamDesc()
public void setParamDesc(FMOD_DSP_PARAMETERDESC[] paramDesc)
public FMOD_DSP_SETPARAMCALLBACK getSetParameter()
public void setSetParameter(FMOD_DSP_SETPARAMCALLBACK setParameter)
public FMOD_DSP_GETPARAMCALLBACK getGetParameter()
public void setGetParameter(FMOD_DSP_GETPARAMCALLBACK getParameter)
public FMOD_DSP_DIALOGCALLBACK getConfig()
public void setConfig(FMOD_DSP_DIALOGCALLBACK config)
public int getConfigWidth()
public void setConfigWidth(int configWidth)
public int getConfigHeight()
public void setConfigHeight(int configHeight)
public Pointer getUserData()
public void setUserData(Pointer userData)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |