Click or drag to resize

JVMBridgeBaseTClassNewAndWrapsDirectTNewClass(String) Method

Creates a new JVM instance of className with no arguments and wraps it directly in TNewClass without type-safety checks.

Namespace: MASES.JCOBridge.C2JBridge
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntax
public static TNewClass NewAndWrapsDirect<TNewClass>(
	string className
)
where TNewClass : IJVMBridgeBase

Parameters

className  String
The Java class name in dot or slash form (e.g. java.lang.String.

Type Parameters

TNewClass
The bridge wrapper type to instantiate. Must expose a constructor accepting IJVMBridgeBaseInitializer. No runtime compatibility check is performed.

Return Value

TNewClass
A new TNewClass wrapping the freshly created JVM instance. No type-safety check is performed; ensure the class name matches the wrapper.
See Also