blob: cf724d5b04e20f1a6230ae4b0dc26d1202deabea [file] [log] [blame]
/*
Copyright 2001-2002,2004-2005 The Apache Software Foundation
Licensed 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.svg12;
import java.util.Collections;
import java.util.Iterator;
import org.apache.batik.bridge.BridgeContext;
import org.apache.batik.bridge.SVGBridgeExtension;
import org.apache.batik.util.SVGConstants;
import org.apache.batik.util.SVG12Constants;
import org.w3c.dom.Element;
/**
* This is a Service interface for classes that want to extend the
* functionality of the Bridge, to support new tags in the rendering tree.
*/
public class SVG12BridgeExtension extends SVGBridgeExtension {
/**
* 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.
*/
public float getPriority() { return 0f; }
/**
* This should return the list of extensions implemented
* by this BridgeExtension.
* @return An iterator containing strings one for each implemented
* extension.
*/
public Iterator getImplementedExtensions() {
return Collections.EMPTY_LIST.iterator();
}
/**
* This should return the individual or company name responsible
* for the this implementation of the extension.
*/
public String getAuthor() {
return "The Apache Batik Team.";
}
/**
* This should contain a contact address (usually an e-mail address).
*/
public String getContactAddress() {
return "batik-dev@xmlgraphics.apache.org";
}
/**
* This should return a URL where information can be obtained on
* this extension.
*/
public String getURL() {
return "http://xml.apache.org/batik";
}
/**
* Human readable description of the extension.
* Perhaps that should be a resource for internationalization?
* (although I suppose it could be done internally)
*/
public String getDescription() {
return "The required SVG 1.2 tags";
}
/**
* 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.
*
* @param ctx The BridgeContext instance to be updated
*/
public void registerTags(BridgeContext ctx) {
// bridges to handle elements in the SVG namespace
super.registerTags(ctx);
ctx.putBridge(new SVGFlowRootElementBridge());
ctx.putBridge(new SVGMultiImageElementBridge());
ctx.putBridge(new SVGSolidColorElementBridge());
}
/**
* Whether the presence of the specified element should cause
* the document to be dynamic. If this element isn't handled
* by this BridgeExtension, just return false.
*
* @param e The element to check.
*/
public boolean isDynamicElement(Element e) {
String ns = e.getNamespaceURI();
if (!SVGConstants.SVG_NAMESPACE_URI.equals(ns)) {
return false;
}
String ln = e.getLocalName();
if (ln.equals(SVGConstants.SVG_SCRIPT_TAG)
|| ln.equals(SVG12Constants.SVG_HANDLER_TAG)
|| ln.startsWith("animate")
|| ln.equals("set")) {
return true;
}
return false;
}
}