Package | Description |
---|---|
com.sun.javafx.css | |
com.sun.javafx.css.parser | |
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
Modifier and Type | Class and Description |
---|---|
class |
CompoundSelector
A compound selector which behaves according to the CSS standard.
|
class |
SimpleSelector
A simple selector which behaves according to the CSS standard.
|
Modifier and Type | Field and Description |
---|---|
private static Selector |
Selector.UniversalSelector.INSTANCE |
private Selector |
Style.selector |
(package private) Selector |
Match.selector |
Modifier and Type | Field and Description |
---|---|
private static java.util.Comparator<Selector> |
SelectorPartitioning.COMPARATOR |
private java.util.Map<java.lang.String,Selector> |
StyleManager.CacheContainer.inlineStylesCache
Cache of parsed, inline styles.
|
private ObservableList<Selector> |
Rule.Observables.selectorObservableList |
private java.util.List<Selector> |
StyleManager.Cache.selectors |
private java.util.List<Selector> |
Rule.selectors |
private java.util.List<Selector> |
StyleMap.selectors |
private java.util.List<Selector> |
SelectorPartitioning.Partition.selectors |
private java.util.List<Selector> |
SelectorPartitioning.Slot.selectors |
Modifier and Type | Method and Description |
---|---|
static Selector |
Selector.createSelector(java.lang.String cssSelector) |
private Selector |
StyleManager.CacheContainer.getInlineStyleSelector(java.lang.String inlineStyle)
Get the mapping of property to style from Node.style for this node.
|
Selector |
CascadingStyle.getSelector() |
Selector |
Style.getSelector()
A selector might have more than one selector.
|
static Selector |
Selector.getUniversalSelector() |
(package private) static Selector |
Selector.readBinary(int bssVersion,
java.io.DataInputStream is,
java.lang.String[] strings) |
Modifier and Type | Method and Description |
---|---|
ObservableList<Selector> |
Rule.getSelectors()
This method is to support tooling that may want to add selectors to
or remove selectors from a Rule.
|
private ObservableList<Selector> |
Rule.Observables.getSelectors() |
java.util.List<Selector> |
Rule.getUnobservedSelectorList()
The list returned from this method should be treated as unmodifiable.
|
(package private) java.util.List<Selector> |
SelectorPartitioning.match(java.lang.String selectorId,
java.lang.String selectorType,
java.util.Set<StyleClass> selectorStyleClass)
Get the list of selectors that match this selector.
|
Modifier and Type | Method and Description |
---|---|
private void |
SelectorPartitioning.Partition.addSelector(Selector pair) |
private void |
SelectorPartitioning.Slot.addSelector(Selector pair) |
(package private) void |
SelectorPartitioning.partition(Selector selector) |
Constructor and Description |
---|
Match(Selector selector,
PseudoClassState pseudoClasses,
int idCount,
int styleClassCount) |
Style(Selector selector,
Declaration declaration) |
Constructor and Description |
---|
Cache(java.util.List<Selector> selectors) |
Rule(java.util.List<Selector> selectors,
byte[] buf,
int bssVersion) |
Rule(java.util.List<Selector> selectors,
java.util.List<Declaration> declarations) |
StyleMap(int id,
java.util.List<Selector> selectors)
Only StyleManager creates StyleMap
|
Modifier and Type | Method and Description |
---|---|
private Selector |
CSSParser.selector(CSSLexer lexer) |
Modifier and Type | Method and Description |
---|---|
private java.util.List<Selector> |
CSSParser.selectors(CSSLexer lexer) |
Modifier and Type | Method and Description |
---|---|
(package private) java.util.List<Node> |
Node.lookupAll(Selector selector,
java.util.List<Node> results)
Used by Node and Parent for traversing the tree and adding all nodes which
match the given selector.
|
(package private) java.util.List<Node> |
Parent.lookupAll(Selector selector,
java.util.List<Node> results)
Please Note: This method should never create the results set,
let the Node class implementation do this!
|