Table of Contents

Class JNetEventResult

Namespace
MASES.JNet.Specific
Assembly
MASES.JNet.dll

Helper class of JNet for some specific operations done with callbacks

public sealed class JNetEventResult : JVMBridgeBase<JNetEventResult>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
Inheritance
JNetEventResult
Implements
Inherited Members
Extension Methods

Properties

BridgeClassName

Java class name to be instantiated

public override string BridgeClassName { get; }

Property Value

string

HasOverride

Set to true if the method applied an override

public bool HasOverride { get; set; }

Property Value

bool

IsBridgeAbstract

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

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

true if the BridgeClassName implements Closeable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

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

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

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

public override bool IsBridgeStatic { get; }

Property Value

bool

ReturnData

The object to be returned to the JVM side

public object ReturnData { get; set; }

Property Value

object

Methods

SetReturnData(bool, object)

Helper function to set both HasOverride and ReturnData

public void SetReturnData(bool hasOverride, object retData)

Parameters

hasOverride bool

true if the method applied an override

retData object

The object to be returned to the JVM side