Uses of Interface
org.apache.batik.script.Interpreter
-
Packages that use Interpreter Package Description org.apache.batik.bridge Provides an API for mapping and maintaining consistency between the SVG DOM tree and the GVT tree.org.apache.batik.bridge.svg12 org.apache.batik.script Provides an API for interpreting scripting language found in SVG files.org.apache.batik.script.jpython Provides an API for interpreting Python language through the JPython interpreter.org.apache.batik.swing.svg -
-
Uses of Interpreter in org.apache.batik.bridge
Classes in org.apache.batik.bridge that implement Interpreter Modifier and Type Class Description class
RhinoInterpreter
A simple implementation ofInterpreter
interface to use Rhino ECMAScript interpreter.class
SVG12RhinoInterpreter
A RhinoInterpreter for SVG 1.2 documents.Fields in org.apache.batik.bridge declared as Interpreter Modifier and Type Field Description protected Interpreter
BaseScriptingEnvironment. interpreter
The default Interpreter for the documentprotected Interpreter
BaseScriptingEnvironment.Window. interpreter
The associated interpreter.protected Interpreter
ScriptingEnvironment.EvaluateIntervalRunnable. interpreter
protected Interpreter
ScriptingEnvironment.EvaluateRunnable. interpreter
protected Interpreter
ScriptingEnvironment.Window. interpreter
The associated interpreter.Methods in org.apache.batik.bridge that return Interpreter Modifier and Type Method Description Interpreter
RhinoInterpreterFactory. createInterpreter(java.net.URL documentURL, boolean svg12)
Creates an instance ofRhinoInterpreter
class.Interpreter
RhinoInterpreterFactory. createInterpreter(java.net.URL documentURL, boolean svg12, ImportInfo imports)
Creates an instance ofRhinoInterpreter
class.Interpreter
BaseScriptingEnvironment. getInterpreter()
Returns the default Interpreter for this document.Interpreter
BaseScriptingEnvironment. getInterpreter(java.lang.String lang)
Interpreter
BaseScriptingEnvironment.Window. getInterpreter()
Returns the associated interpreter.Interpreter
BridgeContext. getInterpreter(java.lang.String language)
Returns a Interpreter for the specified language.Interpreter
ScriptingEnvironment.Window. getInterpreter()
Returns the associated interpreter.Interpreter
Window. getInterpreter()
Returns the associated interpreter.Methods in org.apache.batik.bridge with parameters of type Interpreter Modifier and Type Method Description protected Window
BaseScriptingEnvironment. createWindow(Interpreter interp, java.lang.String lang)
Creates a new Window object.protected Window
ScriptingEnvironment. createWindow(Interpreter interp, java.lang.String lang)
Creates a new Window object.Window
BaseScriptingEnvironment. getWindow(Interpreter interp, java.lang.String lang)
Returns the Window object for the specifiedInterpreter
.void
BaseScriptingEnvironment. initializeEnvironment(Interpreter interp, java.lang.String lang)
Initializes the environment of the given interpreter.Constructors in org.apache.batik.bridge with parameters of type Interpreter Constructor Description EvaluateIntervalRunnable(java.lang.String s, Interpreter interp)
EvaluateRunnable(java.lang.String s, Interpreter interp)
Window(Interpreter interp, java.lang.String lang)
Creates a new Window.Window(Interpreter interp, java.lang.String lang)
Creates a new Window for the given language. -
Uses of Interpreter in org.apache.batik.bridge.svg12
Methods in org.apache.batik.bridge.svg12 with parameters of type Interpreter Modifier and Type Method Description Window
SVG12ScriptingEnvironment. createWindow(Interpreter interp, java.lang.String lang)
Creates a new Window object.Constructors in org.apache.batik.bridge.svg12 with parameters of type Interpreter Constructor Description Global(Interpreter interp, java.lang.String lang)
Creates a new Global object. -
Uses of Interpreter in org.apache.batik.script
Methods in org.apache.batik.script that return Interpreter Modifier and Type Method Description Interpreter
InterpreterFactory. createInterpreter(java.net.URL documentURL, boolean svg12)
This method should create an instance ofInterpreter
interface implementation.Interpreter
InterpreterFactory. createInterpreter(java.net.URL documentURL, boolean svg12, ImportInfo imports)
This method should create an instance ofInterpreter
interface implementation.Interpreter
InterpreterPool. createInterpreter(org.w3c.dom.Document document, java.lang.String language)
Creates a new interpreter for the specified document and according to the specified language.Interpreter
InterpreterPool. createInterpreter(org.w3c.dom.Document document, java.lang.String language, ImportInfo imports)
Creates a new interpreter for the specified document and according to the specified language. -
Uses of Interpreter in org.apache.batik.script.jpython
Classes in org.apache.batik.script.jpython that implement Interpreter Modifier and Type Class Description class
JPythonInterpreter
A simple implementation ofInterpreter
interface to use JPython python parser.Methods in org.apache.batik.script.jpython that return Interpreter Modifier and Type Method Description Interpreter
JPythonInterpreterFactory. createInterpreter(java.net.URL documentURL, boolean svg12)
Creates an instance ofJPythonInterpreter
class.Interpreter
JPythonInterpreterFactory. createInterpreter(java.net.URL documentURL, boolean svg12, ImportInfo imports)
Creates an instance ofJPythonInterpreter
class. -
Uses of Interpreter in org.apache.batik.swing.svg
Methods in org.apache.batik.swing.svg that return Interpreter Modifier and Type Method Description Interpreter
JSVGComponent. getInterpreter(java.lang.String type)
Returns theInterpreter
being used for script of the given MIME type.
-