23 lines
405 B
Java
23 lines
405 B
Java
package org.apache.batik.bridge;
|
|
|
|
import java.util.Iterator;
|
|
import org.w3c.dom.Element;
|
|
|
|
public interface BridgeExtension {
|
|
String getAuthor();
|
|
|
|
String getContactAddress();
|
|
|
|
String getDescription();
|
|
|
|
Iterator getImplementedExtensions();
|
|
|
|
float getPriority();
|
|
|
|
String getURL();
|
|
|
|
boolean isDynamicElement(Element element);
|
|
|
|
void registerTags(BridgeContext bridgeContext);
|
|
}
|