Click or drag to resize

IJVMBridgeDefinition Interface

Generic interface containing definition of every JVMBridgeBase

Namespace: MASES.JCOBridge.C2JBridge
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntax
public interface IJVMBridgeDefinition

The IJVMBridgeDefinition type exposes the following members.

Properties
 NameDescription
Public propertyBridgeClassName Java class name to be instantiated
Public propertyIsBridgeAbstract if the BridgeClassName is an abstract class, i.e. cannot be created an instance
Public propertyIsBridgeCloseable if the BridgeClassName implements java.lang.AutoCloseable
Public propertyIsBridgeInterface if the BridgeClassName is an interface, i.e. does not have any public constructor
Public propertyIsBridgeListener if the BridgeClassName follows the listener pattern of JCOBridge: the BridgeClassName extends a JCListener or implements IJCListener
Public propertyIsBridgeStatic if the BridgeClassName is a static class, i.e. does not have any public constructor
Top
Remarks
Never implements this interface directly. Extends JVMBridgeBase or JVMBridgeBaseTClass instead.
See Also