Interface IJVMBridgeDefinition
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
IsBridgeAbstract
true if the BridgeClassName is an abstract class, i.e. cannot be created an instance
bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
true if the BridgeClassName implements Closeable
bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
true if the BridgeClassName is an interface, i.e. does not have any public constructor
bool IsBridgeInterface { get; }
Property Value
IsBridgeListener
true if the BridgeClassName follows the listener pattern of JCOBridge: the BridgeClassName extends a JCListener or implements IJCListener
bool IsBridgeListener { get; }
Property Value
IsBridgeStatic
true if the BridgeClassName is a static class, i.e. does not have any public constructor
bool IsBridgeStatic { get; }