org.jaffa.components.maint |
|
Java Source File Name | Type | Comment |
CreateComponent.java | Class | This is an abstract implementation of the ICreateComponent interface. |
DeleteComponent.java | Class | This is an abstract implementation of the IDeleteComponent interface. |
ICreateComponent.java | Interface | This interface will be implemented by all Create components. |
ICreateListener.java | Interface | An object which wants to listen to Create events (whenever new records are created by Create components), will create an implementation of this interface, so that it may refresh its data, when the event is fired. |
IDeleteComponent.java | Interface | This interface will be implemented by all Delete components. |
IDeleteListener.java | Interface | An object which wants to listen to Delete events (whenever records are deleted by Delete components), will create an implementation of this interface, so that it may refresh its data, when the event is fired. |
IMaintComponent.java | Interface | This interface will be implemented by all Maintenance components. |
IUpdateComponent.java | Interface | This interface will be implemented by all Update components. |
IUpdateListener.java | Interface | An object which wants to listen to Update events (whenever records are updated by Update components), will create an implementation of this interface, so that it may refresh its data, when the event is fired. |
MaintAction.java | Class | This is the base class for all Maintenance Component Actions. |
MaintComponent.java | Class | This is an abstract implementation of the IMaintComponent interface. |
MaintComponent2.java | Class | This is the base class for all Maintenance components created by using the object_maintenance_2_0 pattern.
It has the following properties -
1- mode : Indicates if the component is in Create, Update or Delete mode.
2- refreshData : Indicates if the data needs to be refreshed. |
MaintForm.java | Class | This is the base class for all Maintenance Component FormBeans. |
MaintTx.java | Class | This is the helper class for all Maintenance Tx (transaction) classes. |
UpdateComponent.java | Class | This is an abstract implementation of the IUpdateComponent interface. |