14 lines
296 B
Java
14 lines
296 B
Java
package org.apache.batik.css.engine.sac;
|
|
|
|
import java.util.Set;
|
|
import org.w3c.css.sac.Condition;
|
|
import org.w3c.dom.Element;
|
|
|
|
public interface ExtendedCondition extends Condition {
|
|
void fillAttributeSet(Set set);
|
|
|
|
int getSpecificity();
|
|
|
|
boolean match(Element element, String str);
|
|
}
|