TransitionFactory
See: Description
Interface | Description |
---|---|
DirectFormUpdate<T> |
Classes that implement this interface don't provide a form for the update
operation but generate the FormResult directly from the select form.
|
EditFormBuilder<T> |
interface for classes that build edit/update forms.
|
FormCreator |
FormCreator Implemented by classes that can implement Object creation forms
By having an Interface we can re-use a lot of servlet boilerplate passing the
appropriate class that implements the Interface.
|
FormCreatorProducer |
Interface for objects that create
FormCreator s |
FormFactory |
Interface implemented by objects that generate HTML forms
|
FormUpdate<T> |
FormUpdate is implemented by a classes that support Form based editing on
objects.
|
FormUpdateProducer<T> |
A factory class that can create
FormUpdate objects for editing its targets |
StandAloneFormUpdate<T> |
Classes that implement this interface build a single update form to select then edit the object.
|
Class | Description |
---|---|
AbstractFormUpdateTransition<K,X> |
A transition for selecting a target using methods from a
FormUpdate . |
CreatorTransition<X> |
A create transition that uses a
Creator object |
EditTransition<X> |
transition that generates an update form based on a
EditFormBuilder |
FormCreatorProducerTransition<X> |
Object creation transition.
|
FormCreatorTransition<X> | |
FormUpdateProducerTransition<K,X> |
Transition to implement the first select stage of a FormUpdate
|
FormUpdateTransition<K,X> | |
StandAloneFormUpdateProducerTransition<X> |
An edit/update transition that used the
FormUpdate generated by
a FormUpdateProducer . |
StandAloneFormUpdateTransition<T> |
A edit/update transition that wraps a
StandAloneFormUpdate . |
UpdateForm<T> |
UpdateForm is handler class for updating Objects where the Factory can provide a class implementing
FormUpdate it is independent of the type of Form used Almost all the
functionality is in the FormUpdate object but this class also holds the state
of the currently selected Object.
|
TransitionFactory