public final class ShortByReference extends AbstractNumberReference<Short>
For example, the following C code,
extern void get_a(short * ap); short foo(void) { short 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 ShortByReference ap); }
and used like this
ShortByReference ap = new ShortByReference(); lib.get_a(ap); System.out.printf("a from lib=%d\n", a.getValue());
Constructor and Description |
---|
ShortByReference()
Creates a new reference to a short value initialized to zero.
|
ShortByReference(short value)
Creates a new reference to a short value.
|
ShortByReference(Short value)
Creates a new reference to a short value.
|
Modifier and Type | Method and Description |
---|---|
void |
fromNative(Runtime runtime,
Pointer buffer,
long offset)
Copies the short value from native memory
|
int |
nativeSize(Runtime runtime)
Gets the native size of type of reference in bytes.
|
void |
toNative(Runtime runtime,
Pointer buffer,
long offset)
Copies the short value to native memory
|
byteValue, checkNull, doubleValue, floatValue, getValue, intValue, longValue, shortValue
public ShortByReference()
public ShortByReference(Short value)
value
- the initial native valuepublic ShortByReference(short value)
value
- the initial native valuepublic void toNative(Runtime runtime, Pointer buffer, long offset)
runtime
- buffer
- the native memory bufferpublic void fromNative(Runtime runtime, Pointer buffer, long offset)
runtime
- buffer
- the native memory buffer.public final int nativeSize(Runtime runtime)
Copyright © 2015. All rights reserved.