public class UniversalSelector extends Object implements Selector
 Equivalent to * selector in CSS. Its specificity is (0,0,0,0).
SelectorHelper| Modifier and Type | Field and Description | 
|---|---|
static UniversalSelector | 
UNIVERSAL_SELECTOR
Universal 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 UniversalSelector UNIVERSAL_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