java.lang.Object
javafx.css.Style
A Style is just the selector and declaration from a Rule.
- Since:
- 9
-
Constructor Summary
ConstructorDescriptionStyle
(Selector selector, Declaration declaration) Constructs aStyle
object. -
Method Summary
Modifier and TypeMethodDescriptionThe Declaration that is the source of the style that is about to be applied or has just been applied.A selector might have more than one selector.
-
Constructor Details
-
Style
Constructs aStyle
object.- Parameters:
selector
- selector for thisStyle
declaration
- declaration for thisStyle
-
-
Method Details
-
getSelector
A selector might have more than one selector. This is the one that was matched.- Returns:
- the matched selector
-
getDeclaration
The Declaration that is the source of the style that is about to be applied or has just been applied. May be null if the value comes from the CSSProperty's initial (default) value.- Returns:
- the declaration
-