Uses of Class
jsint.InputPort

Packages that use InputPort
jlib JLIB provides several libraries written in JScheme and compiled to Java, so it is more informative to read the Jscheme code. 
jsint The JScheme implementation. 
 

Uses of InputPort in jlib
 

Methods in jlib that return InputPort
static InputPort JLIB._J82(Pair args)
           
 

Uses of InputPort in jsint
 

Fields in jsint declared as InputPort
 InputPort Evaluator.input
           
 

Methods in jsint that return InputPort
static InputPort U.toInPort(java.lang.Object x)
          Cast a Scheme object to a Scheme input port, which is an InputPort.
static InputPort U.openInputFile(java.lang.Object filename)
          Opens a file, resource, or URL.
static InputPort Scheme.getInput()
           
static InputPort Scheme.open(java.lang.String name)
           
static InputPort Scheme.openURL(java.lang.String url)
           
static InputPort Scheme.openFile(java.lang.String name)
           
static InputPort Scheme.openResource(java.lang.String name)
           
 

Methods in jsint with parameters of type InputPort
static void Scheme.setInput(InputPort input)
           
static java.lang.Object Scheme.load(InputPort in)
           
 java.lang.Object Evaluator.load(InputPort in)
          Eval all the expressions coming from an InputPort, putting them in the interactionEnvironment.