/*

   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

 */
package org.apache.batik.bridge;

import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PushbackInputStream;
import java.io.Reader;
import java.io.StringReader;
import java.io.UnsupportedEncodingException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.WeakHashMap;
import java.util.jar.Manifest;

import org.apache.batik.dom.AbstractElement;
import org.apache.batik.dom.events.AbstractEvent;
import org.apache.batik.dom.events.NodeEventTarget;
import org.apache.batik.dom.util.XLinkSupport;
import org.apache.batik.script.Interpreter;
import org.apache.batik.script.InterpreterException;
import org.apache.batik.script.ScriptEventWrapper;
import org.apache.batik.util.ParsedURL;
import org.apache.batik.util.SVGConstants;
import org.apache.batik.constants.XMLConstants;

import org.apache.batik.w3c.dom.Location;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.events.DocumentEvent;
import org.w3c.dom.events.Event;
import org.w3c.dom.events.EventListener;
import org.w3c.dom.events.EventTarget;
import org.w3c.dom.svg.SVGDocument;
import org.w3c.dom.svg.SVGSVGElement;
import org.w3c.dom.svg.EventListenerInitializer;

This class is the base class for SVG scripting.
Author:Stephane Hillion
Version:$Id: BaseScriptingEnvironment.java 1851346 2019-01-15 13:41:00Z ssteiner $
/** * This class is the base class for SVG scripting. * * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @version $Id: BaseScriptingEnvironment.java 1851346 2019-01-15 13:41:00Z ssteiner $ */
public class BaseScriptingEnvironment {
Constant used to describe inline scripts.
{0} - URL of document containing script.
{1} - Element tag
{2} - line number of element.
/** * Constant used to describe inline scripts. * <pre> * {0} - URL of document containing script. * {1} - Element tag * {2} - line number of element. * </pre> */
public static final String INLINE_SCRIPT_DESCRIPTION = "BaseScriptingEnvironment.constant.inline.script.description";
Constant used to describe inline scripts.
{0} - URL of document containing script.
{1} - Event attribute name
{2} - line number of element.
/** * Constant used to describe inline scripts. * <pre> * {0} - URL of document containing script. * {1} - Event attribute name * {2} - line number of element. * </pre> */
public static final String EVENT_SCRIPT_DESCRIPTION = "BaseScriptingEnvironment.constant.event.script.description";
Tells whether the given SVG document is dynamic.
/** * Tells whether the given SVG document is dynamic. */
public static boolean isDynamicDocument(BridgeContext ctx, Document doc) { Element elt = doc.getDocumentElement(); if ((elt != null) && SVGConstants.SVG_NAMESPACE_URI.equals(elt.getNamespaceURI())) { if (elt.getAttributeNS (null, SVGConstants.SVG_ONABORT_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONERROR_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONRESIZE_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONUNLOAD_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONSCROLL_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONZOOM_ATTRIBUTE).length() > 0) { return true; } return isDynamicElement(ctx, doc.getDocumentElement()); } return false; } public static boolean isDynamicElement(BridgeContext ctx, Element elt) { List bridgeExtensions = ctx.getBridgeExtensions(elt.getOwnerDocument()); return isDynamicElement(elt, ctx, bridgeExtensions); }
Tells whether the given SVG element is dynamic.
/** * Tells whether the given SVG element is dynamic. */
public static boolean isDynamicElement (Element elt, BridgeContext ctx, List bridgeExtensions) { for (Object bridgeExtension1 : bridgeExtensions) { BridgeExtension bridgeExtension = (BridgeExtension) bridgeExtension1; if (bridgeExtension.isDynamicElement(elt)) { return true; } } if (SVGConstants.SVG_NAMESPACE_URI.equals(elt.getNamespaceURI())) { if (elt.getAttributeNS (null, SVGConstants.SVG_ONKEYUP_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONKEYDOWN_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONKEYPRESS_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONLOAD_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONERROR_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONACTIVATE_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONCLICK_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONFOCUSIN_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONFOCUSOUT_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONMOUSEDOWN_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONMOUSEMOVE_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONMOUSEOUT_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONMOUSEOVER_ATTRIBUTE).length() > 0) { return true; } if (elt.getAttributeNS (null, SVGConstants.SVG_ONMOUSEUP_ATTRIBUTE).length() > 0) { return true; } } for (Node n = elt.getFirstChild(); n != null; n = n.getNextSibling()) { if (n.getNodeType() == Node.ELEMENT_NODE) { if (isDynamicElement(ctx, (Element)n)) { return true; } } } return false; } protected static final String EVENT_NAME = "event"; protected static final String ALTERNATE_EVENT_NAME = "evt";
The 'application/ecmascript' MIME type.
/** * The 'application/ecmascript' MIME type. */
protected static final String APPLICATION_ECMASCRIPT = "application/ecmascript";
The bridge context.
/** * The bridge context. */
protected BridgeContext bridgeContext;
The user-agent.
/** * The user-agent. */
protected UserAgent userAgent;
The document to manage.
/** * The document to manage. */
protected Document document;
The URL of the document ot manage
/** * The URL of the document ot manage */
protected ParsedURL docPURL; protected Set languages = new HashSet();
The default Interpreter for the document
/** * The default Interpreter for the document */
protected Interpreter interpreter;
Map of Interpreter to Window objects.
/** * Map of {@link Interpreter} to {@link org.apache.batik.bridge.Window} * objects. */
protected Map windowObjects = new HashMap();
Set of <script> elements that have already been executed.
/** * Set of &lt;script&gt; elements that have already been executed. */
protected WeakHashMap executedScripts = new WeakHashMap();
Creates a new BaseScriptingEnvironment.
Params:
  • ctx – the bridge context
/** * Creates a new BaseScriptingEnvironment. * @param ctx the bridge context */
public BaseScriptingEnvironment(BridgeContext ctx) { bridgeContext = ctx; document = ctx.getDocument(); docPURL = new ParsedURL(((SVGDocument)document).getURL()); userAgent = bridgeContext.getUserAgent(); }
Returns the Window object for the specified Interpreter.
/** * Returns the Window object for the specified {@link Interpreter}. */
public org.apache.batik.bridge.Window getWindow(Interpreter interp, String lang) { org.apache.batik.bridge.Window w = (org.apache.batik.bridge.Window) windowObjects.get(interp); if (w == null) { w = interp == null ? new Window(null, null) : createWindow(interp, lang); windowObjects.put(interp, w); } return w; }
Returns the Window object for scripting languages that have no Interpreter object.
/** * Returns the Window object for scripting languages that have no * {@link Interpreter} object. */
public org.apache.batik.bridge.Window getWindow() { return getWindow(null, null); }
Creates a new Window object.
/** * Creates a new Window object. */
protected org.apache.batik.bridge.Window createWindow(Interpreter interp, String lang) { return new Window(interp, lang); }
Returns the default Interpreter for this document.
/** * Returns the default Interpreter for this document. */
public Interpreter getInterpreter() { if (interpreter != null) return interpreter; SVGSVGElement root = (SVGSVGElement)document.getDocumentElement(); String lang = root.getContentScriptType(); return getInterpreter(lang); } public Interpreter getInterpreter(String lang) { interpreter = bridgeContext.getInterpreter(lang); if (interpreter == null) { if (languages.contains(lang)) { // Already issued warning so just return null. return null; } // So we know we have processed this interpreter. languages.add(lang); return null; } if (!languages.contains(lang)) { languages.add(lang); initializeEnvironment(interpreter, lang); } return interpreter; }
Initializes the environment of the given interpreter.
/** * Initializes the environment of the given interpreter. */
public void initializeEnvironment(Interpreter interp, String lang) { interp.bindObject("window", getWindow(interp, lang)); }
Loads the scripts contained in the <script> elements.
/** * Loads the scripts contained in the &lt;script&gt; elements. */
public void loadScripts() { NodeList scripts = document.getElementsByTagNameNS (SVGConstants.SVG_NAMESPACE_URI, SVGConstants.SVG_SCRIPT_TAG); int len = scripts.getLength(); for (int i = 0; i < len; i++) { AbstractElement script = (AbstractElement) scripts.item(i); loadScript(script); } }
Executes the specified <script> element, if it hasn't been executed already.
/** * Executes the specified &lt;script&gt; element, if it hasn't been * executed already. */
protected void loadScript(AbstractElement script) { // Don't execute <script> elements more than once. if (executedScripts.containsKey(script)) { return; } // Don't execute a <script> element that has been removed from // the document. { Node n = script; do { n = n.getParentNode(); if (n == null) { return; } } while (n.getNodeType() != Node.DOCUMENT_NODE); } String type = script.getAttributeNS (null, SVGConstants.SVG_TYPE_ATTRIBUTE); if (type.length() == 0) { type = SVGConstants.SVG_SCRIPT_TYPE_DEFAULT_VALUE; } // // Java code invocation. // if (type.equals(SVGConstants.SVG_SCRIPT_TYPE_JAVA)) { try { String href = XLinkSupport.getXLinkHref(script); ParsedURL purl = new ParsedURL(script.getBaseURI(), href); checkCompatibleScriptURL(type, purl); DocumentJarClassLoader cll; URL docURL = null; try { docURL = new URL(docPURL.toString()); } catch (MalformedURLException mue) { /* nothing just let docURL be null */ } cll = new DocumentJarClassLoader (new URL(purl.toString()), docURL); // Get the 'Script-Handler' entry in the manifest. URL url = cll.findResource("META-INF/MANIFEST.MF"); if (url == null) { return; } Manifest man = new Manifest(url.openStream()); String sh; executedScripts.put(script, null); sh = man.getMainAttributes().getValue("Script-Handler"); if (sh != null) { // Run the script handler. ScriptHandler h; h = (ScriptHandler)cll.loadClass(sh).getDeclaredConstructor().newInstance(); h.run(document, getWindow()); } sh = man.getMainAttributes().getValue("SVG-Handler-Class"); if (sh != null) { // Run the initializer EventListenerInitializer initializer; initializer = (EventListenerInitializer)cll.loadClass(sh).getDeclaredConstructor().newInstance(); getWindow(); initializer.initializeEventListeners((SVGDocument)document); } } catch (Exception e) { if (userAgent != null) { userAgent.displayError(e); } } return; } // // Scripting language invocation. // Interpreter interpreter = getInterpreter(type); if (interpreter == null) { // Can't find interpreter so just skip this script block. return; } try { String href = XLinkSupport.getXLinkHref(script); String desc = null; Reader reader = null; if (href.length() > 0) { desc = href; // External script. ParsedURL purl = new ParsedURL(script.getBaseURI(), href); checkCompatibleScriptURL(type, purl); InputStream is = purl.openStream(); String mediaType = purl.getContentTypeMediaType(); String enc = purl.getContentTypeCharset(); if (enc != null) { try { reader = new InputStreamReader(is, enc); } catch (UnsupportedEncodingException uee) { enc = null; } } if (reader == null) { if (APPLICATION_ECMASCRIPT.equals(mediaType)) { // No encoding was specified in the MIME type, so // infer it according to RFC 4329. if (purl.hasContentTypeParameter("version")) { // Future versions of application/ecmascript // are not supported, so skip this script // element if the version parameter is present. return; } PushbackInputStream pbis = new PushbackInputStream(is, 8); byte[] buf = new byte[4]; int read = pbis.read(buf); if (read > 0) { pbis.unread(buf, 0, read); if (read >= 2) { if (buf[0] == (byte)0xff && buf[1] == (byte)0xfe) { if (read >= 4 && buf[2] == 0 && buf[3] == 0) { enc = "UTF32-LE"; pbis.skip(4); } else { enc = "UTF-16LE"; pbis.skip(2); } } else if (buf[0] == (byte)0xfe && buf[1] == (byte)0xff) { enc = "UTF-16BE"; pbis.skip(2); } else if (read >= 3 && buf[0] == (byte)0xef && buf[1] == (byte)0xbb && buf[2] == (byte)0xbf) { enc = "UTF-8"; pbis.skip(3); } else if (read >= 4 && buf[0] == 0 && buf[1] == 0 && buf[2] == (byte)0xfe && buf[3] == (byte)0xff) { enc = "UTF-32BE"; pbis.skip(4); } } if (enc == null) { enc = "UTF-8"; } } reader = new InputStreamReader(pbis, enc); } else { reader = new InputStreamReader(is); } } } else { checkCompatibleScriptURL(type, docPURL); DocumentLoader dl = bridgeContext.getDocumentLoader(); Element e = script; SVGDocument d = (SVGDocument)e.getOwnerDocument(); int line = dl.getLineNumber(script); desc = Messages.formatMessage (INLINE_SCRIPT_DESCRIPTION, new Object [] {d.getURL(), "<"+script.getNodeName()+">", line}); // Inline script. Node n = script.getFirstChild(); if (n != null) { StringBuffer sb = new StringBuffer(); while (n != null) { if (n.getNodeType() == Node.CDATA_SECTION_NODE || n.getNodeType() == Node.TEXT_NODE) sb.append(n.getNodeValue()); n = n.getNextSibling(); } reader = new StringReader(sb.toString()); } else { return; } } executedScripts.put(script, null); interpreter.evaluate(reader, desc); } catch (IOException e) { if (userAgent != null) { userAgent.displayError(e); } return; } catch (InterpreterException e) { System.err.println("InterpExcept: " + e); handleInterpreterException(e); return; } catch (SecurityException e) { if (userAgent != null) { userAgent.displayError(e); } } }
Checks that the script URLs and the document url are compatible. A SecurityException is thrown if loading the script is not allowed.
/** * Checks that the script URLs and the document url are * compatible. A SecurityException is thrown if loading * the script is not allowed. */
protected void checkCompatibleScriptURL(String scriptType, ParsedURL scriptPURL){ userAgent.checkLoadScript(scriptType, scriptPURL, docPURL); }
Recursively dispatch the SVG 'onload' event.
/** * Recursively dispatch the SVG 'onload' event. */
public void dispatchSVGLoadEvent() { SVGSVGElement root = (SVGSVGElement)document.getDocumentElement(); String lang = root.getContentScriptType(); long documentStartTime = System.currentTimeMillis(); bridgeContext.getAnimationEngine().start(documentStartTime); dispatchSVGLoad(root, true, lang); }
Auxiliary method for dispatchSVGLoad.
/** * Auxiliary method for dispatchSVGLoad. */
protected void dispatchSVGLoad(Element elt, boolean checkCanRun, String lang) { for (Node n = elt.getFirstChild(); n != null; n = n.getNextSibling()) { if (n.getNodeType() == Node.ELEMENT_NODE) { dispatchSVGLoad((Element)n, checkCanRun, lang); } } DocumentEvent de = (DocumentEvent)elt.getOwnerDocument(); AbstractEvent ev = (AbstractEvent) de.createEvent("SVGEvents"); String type; if (bridgeContext.isSVG12()) { type = "load"; } else { type = "SVGLoad"; } ev.initEventNS(XMLConstants.XML_EVENTS_NAMESPACE_URI, type, false, false); NodeEventTarget t = (NodeEventTarget)elt; final String s = elt.getAttributeNS(null, SVGConstants.SVG_ONLOAD_ATTRIBUTE); if (s.length() == 0) { // No script to run so just dispatch the event to DOM // (For java presumably). t.dispatchEvent(ev); return; } final Interpreter interp = getInterpreter(); if (interp == null) { // Can't load interpreter so just dispatch normal event // to the DOM (for java presumably). t.dispatchEvent(ev); return; } if (checkCanRun) { // Check that it is ok to run embeded scripts checkCompatibleScriptURL(lang, docPURL); checkCanRun = false; // we only check once for onload handlers } DocumentLoader dl = bridgeContext.getDocumentLoader(); SVGDocument d = (SVGDocument)elt.getOwnerDocument(); int line = dl.getLineNumber(elt); final String desc = Messages.formatMessage (EVENT_SCRIPT_DESCRIPTION, new Object [] {d.getURL(), SVGConstants.SVG_ONLOAD_ATTRIBUTE, line}); EventListener l = new EventListener() { public void handleEvent(Event evt) { try { Object event; if (evt instanceof ScriptEventWrapper) { event = ((ScriptEventWrapper) evt).getEventObject(); } else { event = evt; } interp.bindObject(EVENT_NAME, event); interp.bindObject(ALTERNATE_EVENT_NAME, event); interp.evaluate(new StringReader(s), desc); } catch (IOException io) { } catch (InterpreterException e) { handleInterpreterException(e); } } }; t.addEventListenerNS (XMLConstants.XML_EVENTS_NAMESPACE_URI, type, l, false, null); t.dispatchEvent(ev); t.removeEventListenerNS (XMLConstants.XML_EVENTS_NAMESPACE_URI, type, l, false); }
Method to dispatch SVG Zoom event.
/** * Method to dispatch SVG Zoom event. */
protected void dispatchSVGZoomEvent() { if (bridgeContext.isSVG12()) { dispatchSVGDocEvent("zoom"); } else { dispatchSVGDocEvent("SVGZoom"); } }
Method to dispatch SVG Scroll event.
/** * Method to dispatch SVG Scroll event. */
protected void dispatchSVGScrollEvent() { if (bridgeContext.isSVG12()) { dispatchSVGDocEvent("scroll"); } else { dispatchSVGDocEvent("SVGScroll"); } }
Method to dispatch SVG Resize event.
/** * Method to dispatch SVG Resize event. */
protected void dispatchSVGResizeEvent() { if (bridgeContext.isSVG12()) { dispatchSVGDocEvent("resize"); } else { dispatchSVGDocEvent("SVGResize"); } } protected void dispatchSVGDocEvent(String eventType) { SVGSVGElement root = (SVGSVGElement)document.getDocumentElement(); // Event is dispatched on outermost SVG element. EventTarget t = root; DocumentEvent de = (DocumentEvent)document; AbstractEvent ev = (AbstractEvent) de.createEvent("SVGEvents"); ev.initEventNS(XMLConstants.XML_EVENTS_NAMESPACE_URI, eventType, false, false); t.dispatchEvent(ev); }
Handles the given exception.
/** * Handles the given exception. */
protected void handleInterpreterException(InterpreterException ie) { if (userAgent != null) { Exception ex = ie.getException(); userAgent.displayError((ex == null) ? ie : ex); } }
Handles the given exception.
/** * Handles the given exception. */
protected void handleSecurityException(SecurityException se) { if (userAgent != null) { userAgent.displayError(se); } }
Represents the window object of this environment.
/** * Represents the window object of this environment. */
protected class Window implements org.apache.batik.bridge.Window {
The associated interpreter.
/** * The associated interpreter. */
protected Interpreter interpreter;
The associated language.
/** * The associated language. */
protected String language;
Creates a new Window.
/** * Creates a new Window. */
public Window(Interpreter interp, String lang) { interpreter = interp; language = lang; } /** * Implements {@link * org.apache.batik.bridge.Window#setInterval(String,long)}. */ public Object setInterval(final String script, long interval) { return null; } /** * Implements {@link * org.apache.batik.bridge.Window#setInterval(Runnable,long)}. */ public Object setInterval(final Runnable r, long interval) { return null; } /** * Implements {@link * org.apache.batik.bridge.Window#clearInterval(Object)}. */ public void clearInterval(Object interval) { } /** * Implements {@link * org.apache.batik.bridge.Window#setTimeout(String,long)}. */ public Object setTimeout(final String script, long timeout) { return null; } /** * Implements {@link * org.apache.batik.bridge.Window#setTimeout(Runnable,long)}. */ public Object setTimeout(final Runnable r, long timeout) { return null; } /** * Implements {@link * org.apache.batik.bridge.Window#clearTimeout(Object)}. */ public void clearTimeout(Object timeout) { }
Parses the given XML string into a DocumentFragment of the given document or a new document if 'doc' is null. The implementation in this class always returns 'null'
Returns:The document/document fragment or null on error.
/** * Parses the given XML string into a DocumentFragment of the * given document or a new document if 'doc' is null. * The implementation in this class always returns 'null' * @return The document/document fragment or null on error. */
public Node parseXML(String text, Document doc) { return null; }
Serializes the given node.
/** * Serializes the given node. */
public String printNode(Node n) { return null; }
Gets data from the given URI.
Params:
  • uri – The URI where the data is located.
  • h – A handler called when the data is available.
/** * Gets data from the given URI. * @param uri The URI where the data is located. * @param h A handler called when the data is available. */
public void getURL(String uri, org.apache.batik.bridge.Window.URLResponseHandler h) { getURL(uri, h, "UTF8"); }
Gets data from the given URI.
Params:
  • uri – The URI where the data is located.
  • h – A handler called when the data is available.
  • enc – The character encoding of the data.
/** * Gets data from the given URI. * @param uri The URI where the data is located. * @param h A handler called when the data is available. * @param enc The character encoding of the data. */
public void getURL(String uri, org.apache.batik.bridge.Window.URLResponseHandler h, String enc) { } public void postURL(String uri, String content, org.apache.batik.bridge.Window.URLResponseHandler h) { postURL(uri, content, h, "text/plain", null); } public void postURL(String uri, String content, org.apache.batik.bridge.Window.URLResponseHandler h, String mimeType) { postURL(uri, content, h, mimeType, null); } public void postURL(String uri, String content, org.apache.batik.bridge.Window.URLResponseHandler h, String mimeType, String fEnc) { }
Displays an alert dialog box.
/** * Displays an alert dialog box. */
public void alert(String message) { }
Displays a confirm dialog box.
/** * Displays a confirm dialog box. */
public boolean confirm(String message) { return false; }
Displays an input dialog box.
/** * Displays an input dialog box. */
public String prompt(String message) { return null; }
Displays an input dialog box, given the default value.
/** * Displays an input dialog box, given the default value. */
public String prompt(String message, String defVal) { return null; }
Returns the current BridgeContext.
/** * Returns the current BridgeContext. */
public BridgeContext getBridgeContext() { return bridgeContext; }
Returns the associated interpreter.
/** * Returns the associated interpreter. */
public Interpreter getInterpreter() { return interpreter; }
Returns the Location.
/** * Returns the Location. */
public Location getLocation() { return null; }
Returns the parent Window object.
/** * Returns the parent Window object. */
public org.apache.batik.w3c.dom.Window getParent() { return null; } } }