Click or drag to resize

IJVMBridgeBase Interface

Generic interface containing accessor of every JVMBridgeBase

Namespace:  MASES.JCOBridge.C2JBridge
Assembly:  C2JBridge (in C2JBridge.dll) Version: 2.4.14.220818-82c2bf79b6e60a4d98fb4d1695305d68a91adf44
Syntax
public interface IJVMBridgeBase : IJVMBridgeDefinition

The IJVMBridgeBase type exposes the following members.

Properties
  NameDescription
Public propertyClassName
Java class name to be instantiated
(Inherited from IJVMBridgeDefinition.)
Public propertyDynInstance
The dynamic accessor to Instance
Public propertyInstance
The IJavaObject instance
Public propertyIsAbstract
if the ClassName is an abstract class, i.e. cannot be created an instance
(Inherited from IJVMBridgeDefinition.)
Public propertyIsCloseable
if the ClassName implements Closeable
(Inherited from IJVMBridgeDefinition.)
Public propertyIsInterface
if the ClassName is an interface, i.e. does not have any public constructor
(Inherited from IJVMBridgeDefinition.)
Public propertyIsListener
if the ClassName follows the listener pattern of JCOBridge: the ClassName extends a JCListener or implements IJCListener
(Inherited from IJVMBridgeDefinition.)
Public propertyIsStatic
if the ClassName is a static class, i.e. does not have any public constructor
(Inherited from IJVMBridgeDefinition.)
Top
Extension Methods
  NameDescription
Public Extension MethodCastTObject
Casts the input object implemeneting IJVMBridgeBase into TObject
(Defined by JCOBridgeExtensions.)
Public Extension MethodInitializeListener
Request the initialization of the Listener from the JVM. The listener is a new class which inherits from CLRListener
(Defined by JCOBridgeExtensions.)
Public Extension MethodReleaseListener
Release a IJVMBridgeBase from the JVM
(Defined by JCOBridgeExtensions.)
Public Extension MethodToNative
Converts a IJVMBridgeBase input to an object manageable from the JVM
(Defined by JCOBridgeExtensions.)
Top
Remarks
See Also