Interface: IAction

.auth. IAction

Interface which used for performing actions of the objects of the control
tree. Action instances should be completely reusable. This means that the
initialization method may be called several times during the lifetime of
the application.

Source:

Methods


finalize()

Clean-up method. Called after the control tree iteration was finished.

Source:
Returns:
Type
void

initialize(oView)

Initializes the action. This method is called before starting to iterate
the control tree.

Parameters:
Name Type Description
oView sap.ui.mvc.View

The currently processed view.

Source:
Returns:
Type
void

process(oObject)

Processes an object from the control tree.

Parameters:
Name Type Description
oObject sap.ui.base.ManagedObject

The currently processed object.

Source:
Returns:
Type
void