10 lines
248 B
Java
10 lines
248 B
Java
package org.apache.batik.dom;
|
|
|
|
import org.apache.batik.dom.util.HashTable;
|
|
import org.w3c.dom.Node;
|
|
import org.w3c.dom.stylesheets.StyleSheet;
|
|
|
|
public interface StyleSheetFactory {
|
|
StyleSheet createStyleSheet(Node node, HashTable hashTable);
|
|
}
|