| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface Compilable
The optional interface implemented by ScriptEngines whose methods compile scripts to a form that can be executed repeatedly without recompilation.
| Method Summary | |
|---|---|
|  CompiledScript | compile(Reader script)Compiles the script (source read from Reader) for
 later execution. | 
|  CompiledScript | compile(String script)Compiles the script (source represented as a String) for
 later execution. | 
| Method Detail | 
|---|
CompiledScript compile(String script)
                       throws ScriptException
String) for
 later execution.
script - The source of the script, represented as a String.
CompiledScript to be executed later using one
 of the eval methods of CompiledScript.
ScriptException - if compilation fails.
NullPointerException - if the argument is null.
CompiledScript compile(Reader script)
                       throws ScriptException
Reader) for
 later execution.  Functionality is identical to
 compile(String) other than the way in which the source is
 passed.
script - The reader from which the script source is obtained.
CompiledScript to be executed
 later using one of its eval methods of CompiledScript.
ScriptException - if compilation fails.
NullPointerException - if argument is null.| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.