Table of Contents

Interface IJVMBridgeDefinition

Namespace
MASES.JCOBridge.C2JBridge
Assembly
C2JBridge.dll

Generic interface containing definition of every JVMBridgeBase

public interface IJVMBridgeDefinition
Extension Methods

Remarks

Never implements this interface directly. Extends JVMBridgeBase or JVMBridgeBase<TClass> instead.

Properties

BridgeClassName

Java class name to be instantiated

string BridgeClassName { get; }

Property Value

string

IsBridgeAbstract

true if the BridgeClassName is an abstract class, i.e. cannot be created an instance

bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

true if the BridgeClassName implements Closeable

bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

true if the BridgeClassName is an interface, i.e. does not have any public constructor

bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeListener

true if the BridgeClassName follows the listener pattern of JCOBridge: the BridgeClassName extends a JCListener or implements IJCListener

bool IsBridgeListener { get; }

Property Value

bool

IsBridgeStatic

true if the BridgeClassName is a static class, i.e. does not have any public constructor

bool IsBridgeStatic { get; }

Property Value

bool