org.apache.batik.script |
Scripting Package
Provides an API for interpreting scripting language found in
SVG files.
|
Java Source File Name | Type | Comment |
Interpreter.java | Interface | An hight level interface that represents an interpreter engine of
a particular scripting language. |
InterpreterException.java | Class | An exception that will be thrown when a problem is encountered in the
script by an Interpreter interface implementation. |
InterpreterFactory.java | Interface | An interface for factory objects than can create
Interpreter instances for a particular script language. |
InterpreterPool.java | Class | A class allowing to create/query an
org.apache.batik.script.Interpreter corresponding to a particular
Document and scripting language.
By default, it is able to create interpreters for ECMAScript,
Python and Tcl scripting languages if you provide the right jar
files in your CLASSPATH (i.e. |
ScriptEventWrapper.java | Interface | Interface for objects that act as a Java wrapper for a javascript
event object. |
ScriptHandler.java | Interface | This interface must be implemented in order to call Java code from
an SVG document.
A ScriptHandler instance is called when a 'script' element's 'type'
attribute value is 'application/java-archive' and when the
manifest of the jar file referenced by the 'xlink:href' attribute
contains a 'Script-Handler' entry. |
Window.java | Interface | This interface represents the 'window' object defined in the global
environment of a SVG document. |