Class JVMBridgeRunner<TClass>
Runs directly the class implementing the Java "main" method
public class JVMBridgeRunner<TClass> where TClass : IJVMBridgeBase
Type Parameters
TClassThe class which implements the Execute<T>(params T[]) method
- Inheritance
-
JVMBridgeRunner<TClass>
- Inherited Members
- Extension Methods
Methods
Run<T>(string, bool, params T[])
Executes Execute<T>(params T[])
public static void Run<T>(string className, bool staticClass = false, params T[] args)
Parameters
classNamestringThe Java class to be instantiated
staticClassbooltrue if the class does not contains any default constructor, i.e. it is an executable class
argsT[]The arguments
Type Parameters
TThe arguments type
Run<T>(params T[])
Executes Execute<T>(params T[])
public static void Run<T>(params T[] args)
Parameters
argsT[]The arguments
Type Parameters
TThe arguments type