|
|||||||||||
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_CDTOC
Constructor Summary | |
FMOD_CDTOC()
Create an object that holds a null FMOD_CDTOC . |
Method Summary | |
static FMOD_CDTOC |
allocate()
Allocate a new FMOD_CDTOC . |
static FMOD_CDTOC |
asFMOD_CDTOC(Pointer pointer)
Create a view of the Pointer object as a FMOD_CDTOC object. |
java.nio.IntBuffer |
getFrame()
[r] The start offset of each track in frames |
java.nio.IntBuffer |
getMin()
[r] The start offset of each track in minutes |
int |
getNumTracks()
[r] The number of tracks on the CD |
java.nio.IntBuffer |
getSec()
[r] The start offset of each track in seconds |
void |
release()
|
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_CDTOC()
FMOD_CDTOC
.isNull()
on the object created will returns true. FMOD_CDTOC obj = new FMOD_CDTOC();
(obj == null) <=> false
obj.isNull() <=> true
To creates a new FMOD_CDTOC
, use the static "constructor" :
FMOD_CDTOC obj = FMOD_CDTOC.allocate();
allocate()
Method Detail |
public static FMOD_CDTOC asFMOD_CDTOC(Pointer pointer)
Pointer
object as a FMOD_CDTOC
object.Pointer
holds a FMOD_CDTOC object.
public static FMOD_CDTOC allocate()
FMOD_CDTOC
.isNull()
on the object created will return false. FMOD_CDTOC obj = FMOD_CDTOC.allocate();
(obj == null) <=> obj.isNull() <=> false
public void release()
public int getNumTracks()
public java.nio.IntBuffer getMin()
public java.nio.IntBuffer getSec()
public java.nio.IntBuffer getFrame()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |