| jnew {rJava} | R Documentation |
.jnew create a new Java object
.jnew(class, ...)
class |
fully qualified class name in JNI notation (e.g. "java/lang/String"). |
... |
Any parametes that will be passed to the corresponding
constructor. The parameter types are determined automatically and/or
taken from the jobjRef object. For details see .jcall. |
Returns the reference (jobjRef) to the newly created object or
NULL if something went wrong.
## Not run:
f <- .jnew("java/awt/Frame","Hello")
.jcall(f,,"setVisible",TRUE)
## End(Not run)