|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
T - public interface ByReference<T>
A ByReference subclass is used when a primitive parameter must be passed by-reference.
For example, the following C code,
extern void get_a(int * ap); int foo(void) { int a; // pass a reference to 'a' so get_a() can fill it out get_a(&a); return a; }
Would be declared in java as
interface Lib { void get_a(@Out IntByReference ap); }
and used like this
IntByReference ap = new IntByReference();
lib.get_a(ap);
System.out.printf("a from lib=%d\n", a.getValue());
| Method Summary | |
|---|---|
void |
fromNative(Runtime runtime,
Pointer memory,
long offset)
Copies the java value from native memory |
T |
getValue()
|
int |
nativeSize(Runtime runtime)
Gets the size of the native buffer required to store the value |
void |
toNative(Runtime runtime,
Pointer memory,
long offset)
Copies the java value to native memory |
| Method Detail |
|---|
int nativeSize(Runtime runtime)
void toNative(Runtime runtime,
Pointer memory,
long offset)
runtime - memory - the native memory buffer.
void fromNative(Runtime runtime,
Pointer memory,
long offset)
runtime - memory - the native memory buffer.T getValue()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||