Uses of Class
org.controlsfx.control.decoration.Decoration
Packages that use Decoration
Package
Description
A package containing decoration-related API (that is, API to allow for users
to 'decorate' nodes with additional nodes or css decorations.
A package containing decoration API specific to the validation framework.
-
Uses of Decoration in impl.org.controlsfx.skin
Method parameters in impl.org.controlsfx.skin with type arguments of type DecorationModifier and TypeMethodDescriptionvoid
DecorationPane.updateDecorationsOnNode
(javafx.scene.Node targetNode, List<Decoration> added, List<Decoration> removed) -
Uses of Decoration in org.controlsfx.control.decoration
Subclasses of Decoration in org.controlsfx.control.decorationModifier and TypeClassDescriptionclass
GraphicDecoration is aDecoration
designed to show a graphic (be it an image loaded via anImageView
or an arbitrarily complex scenegraph in its own right) on top of a given node.class
StyleClassDecoration is aDecoration
designed to add a CSS style class to a node (for example, to show a warning style when the field is incorrectly set).Methods in org.controlsfx.control.decoration that return types with arguments of type DecorationModifier and TypeMethodDescriptionstatic final javafx.collections.ObservableList
<Decoration> Decorator.getDecorations
(javafx.scene.Node target) Returns all the currently set decorations for the given node.Methods in org.controlsfx.control.decoration with parameters of type DecorationModifier and TypeMethodDescriptionstatic final void
Decorator.addDecoration
(javafx.scene.Node target, Decoration decoration) Adds the given decoration to the given node.static final void
Decorator.removeDecoration
(javafx.scene.Node target, Decoration decoration) Removes the given decoration from the given node. -
Uses of Decoration in org.controlsfx.validation.decoration
Methods in org.controlsfx.validation.decoration that return types with arguments of type DecorationModifier and TypeMethodDescriptionprotected abstract Collection
<Decoration> AbstractValidationDecoration.createRequiredDecorations
(javafx.scene.control.Control target) protected Collection
<Decoration> CompoundValidationDecoration.createRequiredDecorations
(javafx.scene.control.Control target) protected Collection
<Decoration> GraphicValidationDecoration.createRequiredDecorations
(javafx.scene.control.Control target) protected Collection
<Decoration> StyleClassValidationDecoration.createRequiredDecorations
(javafx.scene.control.Control target) protected abstract Collection
<Decoration> AbstractValidationDecoration.createValidationDecorations
(ValidationMessage message) protected Collection
<Decoration> CompoundValidationDecoration.createValidationDecorations
(ValidationMessage message) protected Collection
<Decoration> GraphicValidationDecoration.createValidationDecorations
(ValidationMessage message) protected Collection
<Decoration> StyleClassValidationDecoration.createValidationDecorations
(ValidationMessage message)