Uses of Interface
org.htmlunit.cssparser.parser.selector.Selector
-
Packages that use Selector Package Description org.htmlunit.cssparser.dom Implementation classes for the org.w3c.dom.css interfaces.org.htmlunit.cssparser.parser.javacc org.htmlunit.cssparser.parser.selector Package org.htmlunit.cssparser.parser.selector. -
-
Uses of Selector in org.htmlunit.cssparser.dom
Fields in org.htmlunit.cssparser.dom declared as Selector Modifier and Type Field Description private Selector
CSSStyleSheetImpl.SelectorEntry. selector_
Methods in org.htmlunit.cssparser.dom that return Selector Modifier and Type Method Description Selector
CSSStyleSheetImpl.SelectorEntry. getSelector()
Methods in org.htmlunit.cssparser.dom with parameters of type Selector Modifier and Type Method Description void
CSSStyleSheetImpl.CSSStyleSheetRuleIndex. addClassSelector(ElementSelector elementSelector, java.lang.String className, Selector s, CSSStyleRuleImpl styleRule)
Add a ClassSelector.void
CSSStyleSheetImpl.CSSStyleSheetRuleIndex. addElementSelector(ElementSelector elementSelector, Selector s, CSSStyleRuleImpl styleRule)
Add an ElementSelector.void
CSSStyleSheetImpl.CSSStyleSheetRuleIndex. addOtherSelector(Selector s, CSSStyleRuleImpl styleRule)
Add a OtherSelector.Constructors in org.htmlunit.cssparser.dom with parameters of type Selector Constructor Description SelectorEntry(Selector selector, CSSStyleRuleImpl rule)
-
Uses of Selector in org.htmlunit.cssparser.parser.javacc
Methods in org.htmlunit.cssparser.parser.javacc that return Selector Modifier and Type Method Description Selector
CSS3Parser. selector()
Selector
CSS3Parser. simpleSelector(Selector sel, char comb)
Methods in org.htmlunit.cssparser.parser.javacc with parameters of type Selector Modifier and Type Method Description Selector
CSS3Parser. simpleSelector(Selector sel, char comb)
-
Uses of Selector in org.htmlunit.cssparser.parser.selector
Subinterfaces of Selector in org.htmlunit.cssparser.parser.selector Modifier and Type Interface Description interface
SimpleSelector
This interface is only for constraints on selectors.Classes in org.htmlunit.cssparser.parser.selector that implement Selector Modifier and Type Class Description class
AbstractSelector
class
ChildSelector
class
DescendantSelector
class
DirectAdjacentSelector
class
ElementSelector
class
GeneralAdjacentSelector
class
PseudoElementSelector
Fields in org.htmlunit.cssparser.parser.selector declared as Selector Modifier and Type Field Description private Selector
ChildSelector. ancestorSelector_
private Selector
DescendantSelector. ancestorSelector_
private Selector
DirectAdjacentSelector. selector_
private Selector
GeneralAdjacentSelector. selector_
Fields in org.htmlunit.cssparser.parser.selector with type parameters of type Selector Modifier and Type Field Description private java.util.List<Selector>
SelectorListImpl. selectors_
Methods in org.htmlunit.cssparser.parser.selector that return Selector Modifier and Type Method Description Selector
SelectorListImpl. get(int index)
Selector
ChildSelector. getAncestorSelector()
Selector
DescendantSelector. getAncestorSelector()
Selector
DirectAdjacentSelector. getSelector()
Selector
GeneralAdjacentSelector. getSelector()
Selector
SelectorListImpl. remove(int index)
Selector
SelectorListImpl. set(int index, Selector element)
Methods in org.htmlunit.cssparser.parser.selector that return types with arguments of type Selector Modifier and Type Method Description java.util.List<Selector>
SelectorListImpl. getSelectors()
java.util.Iterator<Selector>
SelectorListImpl. iterator()
java.util.ListIterator<Selector>
SelectorListImpl. listIterator()
java.util.ListIterator<Selector>
SelectorListImpl. listIterator(int index)
java.util.List<Selector>
SelectorListImpl. subList(int fromIndex, int toIndex)
Methods in org.htmlunit.cssparser.parser.selector with parameters of type Selector Modifier and Type Method Description void
SelectorListImpl. add(int index, Selector element)
boolean
SelectorListImpl. add(Selector e)
private void
SelectorSpecificity. readSelectorSpecificity(Selector selector)
Selector
SelectorListImpl. set(int index, Selector element)
Method parameters in org.htmlunit.cssparser.parser.selector with type arguments of type Selector Modifier and Type Method Description boolean
SelectorListImpl. addAll(int index, java.util.Collection<? extends Selector> c)
boolean
SelectorListImpl. addAll(java.util.Collection<? extends Selector> c)
Constructors in org.htmlunit.cssparser.parser.selector with parameters of type Selector Constructor Description ChildSelector(Selector ancestorSelector, SimpleSelector simpleSelector)
Ctor.DescendantSelector(Selector ancestorSelector, SimpleSelector simpleSelector)
Ctor.DirectAdjacentSelector(Selector child, SimpleSelector simpleSelector)
Ctor.GeneralAdjacentSelector(Selector child, SimpleSelector simpleSelector)
Ctor.SelectorSpecificity(Selector selector)
Ctor.
-