com.jgoodies.validation.tutorial.performance |
Contains examples that demonstrates different approaches
to reducing the validation frequency, costs, and GUI locks.
Related Documentation
For more information see:
@see com.jgoodies.validation.tutorial.basics
@see com.jgoodies.validation.tutorial.formatted
@see com.jgoodies.validation.tutorial.shared
@see com.jgoodies.validation.tutorial.util
@see com.jgoodies.validation.tutorial.validator
|
Java Source File Name | Type | Comment |
BackendService.java | Class | Provides a validation service that simulates a slow back-end operation. |
Container.java | Class | Describes a container with container number and label. |
ContainerValidator.java | Class | Validates containers. |
ContainerValidatorWithCache.java | Class | Validates containers, performs simple validation on the client-side,
and caches valid container numbers. |
ContainerValidatorWithPreValidation.java | Class | Validates containers and performs simple validation on the client-side. |
PerformanceExample.java | Class | Demonstrates and compares approaches to improving validation performance. |
PerformanceSubExample.java | Class | Provides the validation result model and actions necessary to
build a presentation. |
ValidationHandler.java | Class | Executes a given performance sub example. |
ValidationHandlerDelayed.java | Class | Executes a given performance sub example with a given delay. |
ValidationHandlerInBackground.java | Class | Executes a given performance sub example in a background thread using a
SwingWorker. |