Nothing
      # in: Java -> R
.conv.in <- new.env(parent=emptyenv())
.conv.in$. <- FALSE
# out: R -> Java
.conv.out <- new.env(parent=emptyenv())
.conv.out$. <- FALSE
# --- internal fns
.convert.in <- function(jobj, verify.class=TRUE) {  
  jcl <- if (verify.class) .jclass(jobj) else gsub("/",".",jobj@jclass)
  cv <- .conv.in[[jcl]]
  if (!is.null(cv)) jobj else cv$fn(jobj)
}
.convert.out <- function(robj) {
  for (cl in class(robj)) {
    cv <- .conv.out[[cl]]
    if (!is.null(cv)) return(cv$fn(robj))
  }
  robj
}
# external fns
.jsetJConvertor <- function(java.class, fn) {
  if (is.null(fn)) {
    rm(list=java.class, envir=.conv.in)
    if (!length(ls(.conv.in))) .conv.in$. <- FALSE
  } else {
    .conv.in$. <- TRUE
    .conv.in[[java.class]] <- list(fn=fn)
  }
}
.jsetRConvertor <- function(r.class, fn) {
  if (is.null(fn)) {
    rm(list=r.class, envir=.conv.out)
    if (!length(ls(.conv.out))) .conv.out$. <- FALSE
  } else {
    .conv.out$. <- TRUE
    .conv.out[[r.class]] <- list(fn=fn)
  }
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.