Creates a java array by cloning a reference several times

Methods

rep

signature(object = "jobjRef"): ...

rep

signature(object = "jarrayRef"): ...

rep

signature(object = "jrectRef"): ...

See also

Examples

.jinit()
#> [1] 0
if (!nzchar(Sys.getenv("NOAWT"))) {
  p <- .jnew( "java.awt.Point" )
  a <- rep( p, 10 )

  stopifnot( dim(a) == c(10L ) )
  a[[1]]$move( 10L, 50L )
  stopifnot( a[[2]]$getX() == 0.0 )
}