-
Notifications
You must be signed in to change notification settings - Fork 5
Quick Reference: JavaFX
This page gives a quick overview and description of all entities of the ValidationFramework dedicated to JavaFX.
Triggers start the validation process when validation is needed.
Here is a list of all concrete triggers available in the [validationframework-javafx] (https://github.com/padrig64/ValidationFramework/tree/master/validationframework-javafx/src/main/java/com/google/code/validationframework/javafx) module:
Trigger | Description |
---|---|
ChangeListenerTrigger | |
EventHandlerTrigger | |
InvalidationListenerTrigger | |
ObservableInvalidationTrigger | |
ObservableValueChangeTrigger | |
RunLaterTrigger | Trigger wrapper to re-schedule later on the Application Thread. |
Data provides retrieve the data to be validation the triggers are initiated.
Here is a list of all concrete data providers available in the [validationframework-javafx] (https://github.com/padrig64/ValidationFramework/tree/master/validationframework-javafx/src/main/java/com/google/code/validationframework/javafx) module:
Data provider | Output | Description |
---|---|---|
ObservableValueTrigger |
Rules validate the data from the data providers and produce results.
There are no specific rule for JavaFX yet. Refer to the Quick Reference: Core page.
Result handlers process the results of the rules.
Here is a list of all concrete result handlers available in the [validationframework-javafx] (https://github.com/padrig64/ValidationFramework/tree/master/validationframework-javafx/src/main/java/com/google/code/validationframework/javafx) module:
Result handler | Input | Description |
---|---|---|
RunLaterResultHandler | ||
WritableValueSetterResultHandler |
Validators glue all triggers, data providers, rules and result handlers together.
There are no specific validator for JavaFX yet. Refer to the Quick Reference: Core page.
Transformers can be used in some data providers, rules, result handlers and validators to convert or aggregate the manipulated data.
There are no specific transformer for JavaFX yet. Refer to the Quick Reference: Core page.