Table of Contents

Class JVMBridgeRunner<TClass>

Namespace
MASES.JCOBridge.C2JBridge
Assembly
C2JBridge.dll

Runs directly the class implementing the Java "main" method

public class JVMBridgeRunner<TClass> where TClass : IJVMBridgeBase

Type Parameters

TClass

The class which implements the Execute<T>(params T[]) method

Inheritance
JVMBridgeRunner<TClass>
Inherited Members
Extension Methods

Methods

Run<T>(string, bool, params T[])

public static void Run<T>(string className, bool staticClass = false, params T[] args)

Parameters

className string

The Java class to be instantiated

staticClass bool

true if the class does not contains any default constructor, i.e. it is an executable class

args T[]

The arguments

Type Parameters

T

The arguments type

Run<T>(params T[])

public static void Run<T>(params T[] args)

Parameters

args T[]

The arguments

Type Parameters

T

The arguments type