Package com.mendix.core.actionmanagement
Interface IActionRegistrator
public interface IActionRegistrator
Provides the interface for registering custom Java actions.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
registerUserAction
(Class<? extends UserAction<?>> actionClass) Register the user action with the specified class.
-
Method Details
-
registerUserAction
Register the user action with the specified class.The action is registered by its qualified class name in lower-case. If the package name contains an element named 'actions' it is removed.
- Parameters:
actionClass
- the class of the action to register
-