16 lines
281 B
Java
16 lines
281 B
Java
package org.apache.batik.dom;
|
|
|
|
public interface DomExtension {
|
|
String getAuthor();
|
|
|
|
String getContactAddress();
|
|
|
|
String getDescription();
|
|
|
|
float getPriority();
|
|
|
|
String getURL();
|
|
|
|
void registerTags(ExtensibleDOMImplementation extensibleDOMImplementation);
|
|
}
|