Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.batik.bridge.svg12
Class SVG12BridgeExtension  view SVG12BridgeExtension download SVG12BridgeExtension.java

java.lang.Object
  extended byorg.apache.batik.bridge.SVGBridgeExtension
      extended byorg.apache.batik.bridge.svg12.SVG12BridgeExtension
All Implemented Interfaces:
org.apache.batik.bridge.BridgeExtension

public class SVG12BridgeExtension
extends org.apache.batik.bridge.SVGBridgeExtension

This is a Service interface for classes that want to extend the functionality of the Bridge, to support new tags in the rendering tree.


Constructor Summary
SVG12BridgeExtension()
           
 
Method Summary
 java.lang.String getAuthor()
          This should return the individual or company name responsible for the this implementation of the extension.
 java.lang.String getContactAddress()
          This should contain a contact address (usually an e-mail address).
 java.lang.String getDescription()
          Human readable description of the extension.
 java.util.Iterator getImplementedExtensions()
          This should return the list of extensions implemented by this BridgeExtension.
 float getPriority()
          Return the priority of this Extension.
 java.lang.String getURL()
          This should return a URL where information can be obtained on this extension.
 void registerTags(org.apache.batik.bridge.BridgeContext ctx)
          This method should update the BridgeContext with support for the tags in this extension.
 
Methods inherited from class org.apache.batik.bridge.SVGBridgeExtension
isDynamicElement
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SVG12BridgeExtension

public SVG12BridgeExtension()
Method Detail

getPriority

public float getPriority()
Return the priority of this Extension. Extensions are registered from lowest to highest priority. So if for some reason you need to come before/after another existing extension make sure your priority is lower/higher than theirs.


getImplementedExtensions

public java.util.Iterator getImplementedExtensions()
This should return the list of extensions implemented by this BridgeExtension.


getAuthor

public java.lang.String getAuthor()
This should return the individual or company name responsible for the this implementation of the extension.


getContactAddress

public java.lang.String getContactAddress()
This should contain a contact address (usually an e-mail address).


getURL

public java.lang.String getURL()
This should return a URL where information can be obtained on this extension.


getDescription

public java.lang.String getDescription()
Human readable description of the extension. Perhaps that should be a resource for internationalization? (although I suppose it could be done internally)


registerTags

public void registerTags(org.apache.batik.bridge.BridgeContext ctx)
This method should update the BridgeContext with support for the tags in this extension. In some rare cases it may be necessary to replace existing tag handlers, although this is discouraged.