|
" 2013 FRC Java API " |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.sun.squawk.os.Parm
public class Parm
Root parameter class.
| Constructor Summary | |
|---|---|
Parm(int fnaddress)
Constructor. |
|
| Method Summary | |
|---|---|
Parm |
cbytes(byte[] bytes)
Add a byte array parameter. |
Parm |
cstring(String str)
Add a String parameter. |
void |
free()
Free all the malloc allocated parameter buffers. |
Parm |
jni()
Specify that the function should be called using the JNI calling convention. |
Parm |
parm(double x)
Add a double parameter. |
Parm |
parm(float x)
Add a float parameter. |
Parm |
parm(int x)
Add an int parameter. |
Parm |
parm(long x)
Add a long parameter. |
Parm |
parm(Object x)
Add an Object parameter. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Parm(int fnaddress)
fnaddress - address of the function to be called| Method Detail |
|---|
public Parm jni()
public Parm parm(int x)
x - the parameter
public Parm parm(long x)
x - the parameter
public Parm parm(float x)
x - the parameter
public Parm parm(double x)
x - the parameter
public Parm parm(Object x)
x - the parameter
public Parm cstring(String str)
str - the parameter
public Parm cbytes(byte[] bytes)
bytes - the parameter
public void free()
|
" 2013 FRC Java API " |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||