Class CustomJavaActionDelegateProvider
- java.lang.Object
-
- com.mendix.webui.internal.component.CustomJavaActionDelegateProvider
-
public class CustomJavaActionDelegateProvider extends java.lang.Object
The provider for obtaining a feedback delegate for a custom Java action. This is an internal class that is not to be used and may change at any time.
-
-
Field Summary
Fields Modifier and Type Field Description static java.util.concurrent.ConcurrentHashMap<java.lang.String,CustomJavaActionDelegate>
customJavaActionDelegates
All delegates by Mendix instance ID.
-
Constructor Summary
Constructors Constructor Description CustomJavaActionDelegateProvider()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CustomJavaActionDelegate
get(IContext context)
Returns a delegate for custom Java actions.
-
-
-
Field Detail
-
customJavaActionDelegates
public static final java.util.concurrent.ConcurrentHashMap<java.lang.String,CustomJavaActionDelegate> customJavaActionDelegates
All delegates by Mendix instance ID.
-
-
Method Detail
-
get
public static CustomJavaActionDelegate get(IContext context)
Returns a delegate for custom Java actions.- Parameters:
context
- the context for retrieving the current runtime server- Returns:
- the feedback delegate
-
-