Package com.jalios.util
Interface ActionListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
FileDocument.DeleteThumbnailListener
public interface ActionListener extends java.util.EventListener
This interface provides generics callback mechanism to perform custom actions on a processed object. Methods who allow to perform custom action should add an ActionListener parameter they just call. Very usefull for methods performing recursive calls.- Since:
- jcms-5.7.3
- Author:
- Jean-Philippe Encausse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
performAction(java.lang.Object obj)
Perform a generic action on the given object.
-
-
-
Method Detail
-
performAction
boolean performAction(java.lang.Object obj)
Perform a generic action on the given object. The parameter obj should be cast in the convenient type to perform action and access methods.- Parameters:
obj
- Target Object to perform action- Returns:
- boolean true if the action has been performed
-
-