Package com.mendix.core.actionmanagement
Interface IActionRegistrator
-
public interface IActionRegistrator
Provides the interface for registering custom Java actions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
bundleComponentLoaded()
Deprecated.void
registerUserAction(java.lang.Class<? extends UserAction<?>> actionClass)
Register the user action with the specified class.
-
-
-
Method Detail
-
registerUserAction
void registerUserAction(java.lang.Class<? extends UserAction<?>> actionClass)
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
-
bundleComponentLoaded
@Deprecated void bundleComponentLoaded()
Deprecated.The method does nothing and will be removed in the future.
-
-