Click or drag to resize

ICLRListener Interface

Listener interface

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

The ICLRListener 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
(Inherited from IJVMBridgeBase.)
Public propertyDynListener Obsolete.
Local reference for JVM Listener, it shall be used as input for all Java methods which need the interface e.g. addActionListener
Public propertyInstance
The IJavaObject instance
(Inherited from IJVMBridgeBase.)
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.)
Public propertyListener Obsolete.
Local reference for JVM JCListener instance, it shall be used as input for all Java methods which need the interface e.g. addActionListener
Top
Methods
  NameDescription
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
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 MethodToNativeOverloaded.
Converts a IJVMBridgeBase input to an object manageable from the JVM
(Defined by JCOBridgeExtensions.)
Public Extension MethodToNativeOverloaded.
Converts a ICLRListener input to an object manageable from the JVM
(Defined by JCOBridgeExtensions.)
Top
See Also