Package org.w3c.dom.svg
Interface EventListenerInitializer
-
public interface EventListenerInitializerThis interface must be implemented in order to call Java code from an SVG document. AEventListenerInitializerinstance 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 'SVG-Handler-Class' entry. The value of this entry must be the classname of theEventListenerInitializerto call. This classes implementing this interface must have a default constructor.- Version:
- $Id: EventListenerInitializer.java 477018 2006-11-20 03:24:32Z mrglavas $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinitializeEventListeners(SVGDocument doc)This method is called by the SVG viewer when the scripts are loaded to register the listener needed.
-
-
-
Method Detail
-
initializeEventListeners
void initializeEventListeners(SVGDocument doc)
This method is called by the SVG viewer when the scripts are loaded to register the listener needed.- Parameters:
doc- The current document.
-
-