php.java.script
Interface IPhpScriptEngine

All Superinterfaces:
Compilable, java.io.FileFilter, ScriptEngine
All Known Implementing Classes:
InteractivePhpScriptEngine, InvocablePhpScriptEngine, PhpScriptEngine

public interface IPhpScriptEngine
extends ScriptEngine, Compilable, java.io.FileFilter

Common methods for all PHP script engines

Author:
jostb

Field Summary
 
Fields inherited from interface javax.script.ScriptEngine
ARGV, ENGINE, ENGINE_VERSION, FILENAME, LANGUAGE, LANGUAGE_VERSION, NAME
 
Method Summary
 void close()
          free all resources associated with the script engine.
 void release()
          alias for close()
 
Methods inherited from interface javax.script.ScriptEngine
createBindings, eval, eval, eval, eval, eval, eval, get, getBindings, getContext, getFactory, put, setBindings, setContext
 
Methods inherited from interface javax.script.Compilable
compile, compile
 
Methods inherited from interface java.io.FileFilter
accept
 

Method Detail

close

void close()
           throws java.io.IOException
free all resources associated with the script engine. Must be called explicitly for the InvocablePhpScriptEngine and InteractivePhpScriptEngine.

Throws:
java.io.IOException

release

void release()
alias for close()

Throws:
java.io.IOException