public class EvenChildSelector extends Object implements Selector
 Equivalent to :nth-child(even) selector in CSS. Its specificity is (0,0,1,0).
Widget.getParent(), 
SelectorHelper| Modifier and Type | Field and Description | 
|---|---|
| static EvenChildSelector | EVEN_CHILD_SELECTOREven child selector singleton to avoid creating several ones. | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | appliesToWidget(Widget widget)Checks whether or not this selector applies to the given widget. | 
| int | getSpecificity()Returns the specificity of this selector. | 
public static final EvenChildSelector EVEN_CHILD_SELECTOR
public boolean appliesToWidget(Widget widget)
SelectorappliesToWidget in interface Selectorwidget - the widget to test.true if this selectors applies to the given widget, false otherwise.public int getSpecificity()
SelectorThe specificity allows to determine in which order the rules of a stylesheet should be applied.
A specificity is composed of four numbers (defined by CSS2 specification):
SelectorHelper provides a method to
 compute the specificity of a selector.getSpecificity in interface Selector