Uses of Class
edu.rice.cs.drjava.model.repl.newjvm.InterpretResult

Packages that use InterpretResult
edu.rice.cs.drjava.model.repl.newjvm Manages the creation and invocation of the separate JVM used by the interactions pane. 
 

Uses of InterpretResult in edu.rice.cs.drjava.model.repl.newjvm
 

Methods in edu.rice.cs.drjava.model.repl.newjvm that return InterpretResult
static InterpretResult InterpretResult.booleanValue(Boolean b)
           
static InterpretResult InterpretResult.busy()
           
static InterpretResult InterpretResult.charValue(Character c)
           
static InterpretResult InterpretResult.exception(edu.rice.cs.dynamicjava.interpreter.InterpreterException e)
           
 InterpretResult InterpreterJVMRemoteI.interpret(String s)
          Interprets the given string of source code in the active interpreter.
 InterpretResult InterpreterJVM.interpret(String s)
          Interprets the given string of source code in the active interpreter.
 InterpretResult InterpreterJVM.interpret(String s, String interpreterName)
          Interprets the given string of source code with the given interpreter.
static InterpretResult InterpretResult.noValue()
           
static InterpretResult InterpretResult.numberValue(Number n)
           
static InterpretResult InterpretResult.objectValue(String objS)
           
static InterpretResult InterpretResult.stringValue(String s)
           
static InterpretResult InterpretResult.unexpectedException(Throwable t)