https://github.com/cran/XML
Raw File
Tip revision: fd381fe33b16c0afada835fc4071dacf3b8d9580 authored by Duncan Temple Lang on 03 August 2009, 00:00:00 UTC
version 2.6-0
Tip revision: fd381fe
eventHandlers.R
characterOnlyHandler <- function() {
  txt <- NULL
  text <- function(val,...) {
    txt <<- c(txt, val)
  }

  getText <- function() { txt }

  return(list(text=text, getText=getText))
}
back to top