1 18 package org.apache.batik.bridge; 19 20 import java.util.Iterator ; 21 22 import org.w3c.dom.Element ; 23 24 28 public interface BridgeExtension { 29 30 36 public float getPriority(); 37 38 46 public Iterator getImplementedExtensions(); 47 48 52 public String getAuthor(); 53 54 57 public String getContactAddress(); 58 59 63 public String getURL(); 64 65 70 public String getDescription(); 71 72 80 public void registerTags(BridgeContext ctx); 81 82 89 public boolean isDynamicElement(Element e); 90 } 91 | Popular Tags |