es.udc.mypersonalizer.admin.http.controller.actions.propertyeditor |
|
Java Source File Name | Type | Comment |
AbstractUpdatePropertyAction.java | Class | This abstract class performs common tasks when trying to update simple or
compound properties. |
AddPropertyValueAction.java | Class | This action is processed when trying to add a value to a multi-valued
property. |
EditPropertyValueAction.java | Class | This action is processed when trying to edit a value of a multi-valued
property. |
ProcessAddPropertySimpleValueAction.java | Class | This action is invoked to add a simple value to a multi-valued
SimpleProperty . |
ProcessEditPropertyCompoundValueAction.java | Class | This action is invoked to edit the value of a CompoundProperty .
It retrieves its parameters from
EditPropertyValueForm , then it
processes new values for each contained property and updates it.
After the above, it redirects to UpdateCompoundProperty action
else returns to the previous frm.
Of course, properties updated are only those simple and single-valued of
the current compound property value. |
ProcessEditPropertySimpleValueAction.java | Class | This action is invoked to edit a value of a SimpleProperty . |
ProcessUpdateSimpleSingleValuedPropertiesAction.java | Class | This action is invoked to update the values of a single-valued compound
property. |
PropertyEditorAction.java | Class | A base clase for the property editor actions that ensures the existence
of a correct exitUrl , exitMessage and
attributes in the request for the JSP pages, so they can display the
exit editor link.
It uses
EditorCommonForm to access property editor configuration.
All property editor controller actions should extend this class to
be sure the above attributes are setted for the forward to a JSP page so
the exit property editor link can be displayed. |
RemovePropertyValueAction.java | Class | This action is processed when trying to remove a value of a
multi-valued property. |
ResetCompoundPropertyAction.java | Class | This action resets a compound property to 0 values. |
ReturnAction.java | Class | This action redirects to UpdateCompoundProperty action. |
StartPropertyEditorAction.java | Class | This is the starting action for the property editor wizard. |
UpdateCompoundPropertyAction.java | Class | Implements the Template Method pattern hook method to create a
Collection
of ViewProperty objects with information of the contained
properties of a CompoundProperty . |
UpdateSimplePropertyAction.java | Class | Implements the Template Method pattern hook method to create a Collection
of one ViewProperty object with information about a
SimpleProperty/code>. |