Interface StyleRuleMatcher
- 
- All Known Implementing Classes:
- SimpleStyleRuleMatcher
 
 public interface StyleRuleMatcherA (possibly statefull) style matcher. This class is responsible for checking which style rule applies to the given document. It is guaranteed, that the matcher receives the elements in the order in which they appear in the document. Although the style rule matcher does not receive explicit element-opened and element-closed events, these events can be derived from the layout element and its relation to the parent (and possibly previously received element and its parent).- Author:
- Thomas Morgner
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StyleRuleMatcherderiveInstance()Creates an independent copy of this style rule matcher.CSSStyleRule[]getMatchingRules(LayoutElement element)CSSPageRule[]getPageRule(CSSValue pageName, PseudoPage[] pseudoPages)voidinitialize(DocumentContext layoutProcess)booleanisMatchingPseudoElement(LayoutElement element, String pseudo)
 
- 
- 
- 
Method Detail- 
initializevoid initialize(DocumentContext layoutProcess) 
 - 
deriveInstanceStyleRuleMatcher deriveInstance() Creates an independent copy of this style rule matcher.- Returns:
 
 - 
getMatchingRulesCSSStyleRule[] getMatchingRules(LayoutElement element) 
 - 
isMatchingPseudoElementboolean isMatchingPseudoElement(LayoutElement element, String pseudo) 
 - 
getPageRuleCSSPageRule[] getPageRule(CSSValue pageName, PseudoPage[] pseudoPages) 
 
- 
 
-