Package com.mendix.webui
Class CustomJavaAction<R>
- java.lang.Object
-
- com.mendix.core.actionmanagement.internal.InternalCoreAction<R>
-
- com.mendix.core.actionmanagement.CoreAction<R>
-
- com.mendix.systemwideinterfaces.core.UserAction<R>
-
- com.mendix.webui.CustomJavaAction<R>
-
- Type Parameters:
R
- the return type of the action
- All Implemented Interfaces:
ICoreAction<R>
,java.util.concurrent.Callable<R>
public abstract class CustomJavaAction<R> extends UserAction<R>
Provides a base class for custom Java actions.
-
-
Constructor Summary
Constructors Constructor Description CustomJavaAction(IContext context)
Creates a custom Java action with a context and the current delegate.
-
Method Summary
-
Methods inherited from class com.mendix.systemwideinterfaces.core.UserAction
context, execute, executeAction
-
Methods inherited from class com.mendix.core.actionmanagement.CoreAction
getUnwrappedAction
-
Methods inherited from class com.mendix.core.actionmanagement.internal.InternalCoreAction
addDatavalidationFeedback, addDataValidationFeedback, call, clone, getActionName, getClonedContext, getContext, getEventObjects, getException, getMetaInfo, getState, handleConcurrentExecution, setActionName, setAllowsConcurrentExecution, setContext, setEventObjects, setException, setMetaInfo, setState
-
-
-
-
Constructor Detail
-
CustomJavaAction
public CustomJavaAction(IContext context)
Creates a custom Java action with a context and the current delegate.- Parameters:
context
- the context for executing the action in
-
-