Package org.apache.batik.css.engine.sac
Interface ExtendedSelector
-
- All Superinterfaces:
org.w3c.css.sac.Selector
- All Known Implementing Classes:
AbstractDescendantSelector,AbstractElementSelector,AbstractSiblingSelector,CSSChildSelector,CSSConditionalSelector,CSSDescendantSelector,CSSDirectAdjacentSelector,CSSElementSelector,CSSPseudoElementSelector
public interface ExtendedSelector extends org.w3c.css.sac.SelectorThis interface extends theSelector.- Version:
- $Id: ExtendedSelector.java 1808001 2017-09-11 09:51:29Z ssteiner $
-
-
Field Summary
-
Fields inherited from interface org.w3c.css.sac.Selector
SAC_ANY_NODE_SELECTOR, SAC_CDATA_SECTION_NODE_SELECTOR, SAC_CHILD_SELECTOR, SAC_COMMENT_NODE_SELECTOR, SAC_CONDITIONAL_SELECTOR, SAC_DESCENDANT_SELECTOR, SAC_DIRECT_ADJACENT_SELECTOR, SAC_ELEMENT_NODE_SELECTOR, SAC_NEGATIVE_SELECTOR, SAC_PROCESSING_INSTRUCTION_NODE_SELECTOR, SAC_PSEUDO_ELEMENT_SELECTOR, SAC_ROOT_NODE_SELECTOR, SAC_TEXT_NODE_SELECTOR
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfillAttributeSet(java.util.Set attrSet)Fills the given set with the attribute names found in this selector.intgetSpecificity()Returns the specificity of this selector.booleanmatch(org.w3c.dom.Element e, java.lang.String pseudoE)Tests whether this selector matches the given element.
-
-
-
Method Detail
-
match
boolean match(org.w3c.dom.Element e, java.lang.String pseudoE)Tests whether this selector matches the given element.
-
getSpecificity
int getSpecificity()
Returns the specificity of this selector.
-
fillAttributeSet
void fillAttributeSet(java.util.Set attrSet)
Fills the given set with the attribute names found in this selector.
-
-