Table of Contents

Class MouseAdapter

Namespace
Java.Awt.EventNs
Assembly
MASES.JNet.dll

Listener for MouseAdapter. Extends JVMBridgeListener, implements IMouseAdapter

public class MouseAdapter : JVMBridgeListener, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBase>, IDisposable, IJVMBridgeBaseStatic, IMouseAdapter, IJVMBridgeBase, IJVMBridgeDefinition
Inheritance
MouseAdapter
Implements
Derived
Inherited Members
JVMBridgeListener.ListenerShallManageEventIndex
JVMBridgeListener.ListenerShallManageEventName
JVMBridgeListener.ListenerShallManageEventIndexWithData
JVMBridgeListener.ListenerShallManageEventNameWithData
JVMBridgeBase<JVMBridgeListener>.IsAssignableFrom(IJavaType)
JVMBridgeBase<JVMBridgeListener>.IsAssignableFrom<T>()
JVMBridgeBase<JVMBridgeListener>.Execute<T>(params T[])
JVMBridgeBase<JVMBridgeListener>.DynBridgeClazz
JVMBridgeBase<JVMBridgeListener>.BridgeClazz
JVMBridgeBase.ReferenceEqualsJVM(IJVMBridgeBase, IJVMBridgeBase)
JVMBridgeBase.RuntimeClassNameOf<T>()
JVMBridgeBase.ClassNameOf<T>()
JVMBridgeBase.ClassOf<T>()
JVMBridgeBase.WrapsDirect<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn, TConverter>(IJavaObject)
JVMBridgeBase.MonitorEnter()
JVMBridgeBase.MonitorExit()
JVMBridgeBase.IsInstanceOf(IJavaType)
JVMBridgeBase.IsInstanceOf<T>()
JVMBridgeBase.RuntimeIsInstanceOf<T>()
JVMBridgeBase.CastTo<TNewClass>()
JVMBridgeBase.CastToAndDetach<TNewClass>()
JVMBridgeBase.CastDirect<TNewClass>()
JVMBridgeBase.CastDirectAndDetach<TNewClass>()
JVMBridgeBase.CheckDisposed()
JVMBridgeBase.ToString()
JVMBridgeBase.Equals(IJVMBridgeBase)
JVMBridgeBase.GetHashCode()
JVMBridgeBase.Notify()
JVMBridgeBase.NotifyAll()
JVMBridgeBase.Wait()
JVMBridgeBase.DynBridgeInstance
JVMBridgeBase.BridgeInstance
JVMBridgeBase.IsBridgeInterface
JVMBridgeBase.IsBridgeAbstract
Extension Methods

Remarks

Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object

Constructors

MouseAdapter()

public MouseAdapter()

MouseAdapter(IJVMBridgeBaseInitializer)

Initializer used internally by JCOBridge. Do not use directly.

[Obsolete("This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public MouseAdapter(IJVMBridgeBaseInitializer initializer)

Parameters

initializer IJVMBridgeBaseInitializer

MouseAdapter(params object[])

Generic constructor used by JCOBridge when a derived class needs to forward arguments to the base JVMBridgeBase class.

public MouseAdapter(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

Java class name to be instantiated

public override string BridgeClassName { get; }

Property Value

string

OnMouseClicked

public Action<MouseEvent> OnMouseClicked { get; set; }

Property Value

Action<MouseEvent>

Remarks

Assign a delegate to handle the event without subclassing. If both this handler and a virtual method override are present, the delegate takes precedence. Set to null to delegate to the virtual method.

OnMouseDragged

public Action<MouseEvent> OnMouseDragged { get; set; }

Property Value

Action<MouseEvent>

Remarks

Assign a delegate to handle the event without subclassing. If both this handler and a virtual method override are present, the delegate takes precedence. Set to null to delegate to the virtual method.

OnMouseEntered

public Action<MouseEvent> OnMouseEntered { get; set; }

Property Value

Action<MouseEvent>

Remarks

Assign a delegate to handle the event without subclassing. If both this handler and a virtual method override are present, the delegate takes precedence. Set to null to delegate to the virtual method.

OnMouseExited

public Action<MouseEvent> OnMouseExited { get; set; }

Property Value

Action<MouseEvent>

Remarks

Assign a delegate to handle the event without subclassing. If both this handler and a virtual method override are present, the delegate takes precedence. Set to null to delegate to the virtual method.

OnMouseMoved

public Action<MouseEvent> OnMouseMoved { get; set; }

Property Value

Action<MouseEvent>

Remarks

Assign a delegate to handle the event without subclassing. If both this handler and a virtual method override are present, the delegate takes precedence. Set to null to delegate to the virtual method.

OnMousePressed

public Action<MouseEvent> OnMousePressed { get; set; }

Property Value

Action<MouseEvent>

Remarks

Assign a delegate to handle the event without subclassing. If both this handler and a virtual method override are present, the delegate takes precedence. Set to null to delegate to the virtual method.

OnMouseReleased

public Action<MouseEvent> OnMouseReleased { get; set; }

Property Value

Action<MouseEvent>

Remarks

Assign a delegate to handle the event without subclassing. If both this handler and a virtual method override are present, the delegate takes precedence. Set to null to delegate to the virtual method.

OnMouseWheelMoved

public Action<MouseWheelEvent> OnMouseWheelMoved { get; set; }

Property Value

Action<MouseWheelEvent>

Remarks

Assign a delegate to handle the event without subclassing. If both this handler and a virtual method override are present, the delegate takes precedence. Set to null to delegate to the virtual method.

Methods

InitializeHandlers(Type)

Handlers initializer for MouseAdapter

protected virtual void InitializeHandlers(Type listenerRuntimeType)

Parameters

listenerRuntimeType Type

ListenerShallManageEvent(int)

Invoked from the JVMBridgeListener on each received event to notify the user which can decide to abort the execution for the specific event returning false

protected override bool ListenerShallManageEvent(int eventIndex)

Parameters

eventIndex int

The index of the event triggered as returned from AddEventHandler(string, EventHandler) or AddEventHandler<TDataClass>(string, EventHandler<CLRListenerEventArgs<TDataClass>>)

Returns

bool

Returns true to continue event evaluation, false to return the control to the JVM

Remarks

By default every event continues the execution and reads the data from JVM; this implies an extra cost which can be limited using ListenerShallManageEvent(int) or the MASES.JCOBridge.C2JBridge.JVMBridgeListener.ListenerShallManageEventIndex/MASES.JCOBridge.C2JBridge.JVMBridgeListener.ListenerShallManageEventName handlers. Returning false the control is immediately returned to the JVM, anyway the user has received the notification. It can be useful in scenarios where the user is interested in few events and the other are simply discarded to optimize the execution speed. By default, this function invokes MASES.JCOBridge.C2JBridge.JVMBridgeListener.ListenerShallManageEventIndex, then try MASES.JCOBridge.C2JBridge.JVMBridgeListener.ListenerShallManageEventName if they are set or return true

ListenerShallManageEventHandlers(int)

protected virtual bool ListenerShallManageEventHandlers(int eventIndex)

Parameters

eventIndex int

Returns

bool

MouseClicked(MouseEvent)

public virtual void MouseClicked(MouseEvent arg0)

Parameters

arg0 MouseEvent

MouseEvent

MouseDragged(MouseEvent)

public virtual void MouseDragged(MouseEvent arg0)

Parameters

arg0 MouseEvent

MouseEvent

MouseEntered(MouseEvent)

public virtual void MouseEntered(MouseEvent arg0)

Parameters

arg0 MouseEvent

MouseEvent

MouseExited(MouseEvent)

public virtual void MouseExited(MouseEvent arg0)

Parameters

arg0 MouseEvent

MouseEvent

MouseMoved(MouseEvent)

public virtual void MouseMoved(MouseEvent arg0)

Parameters

arg0 MouseEvent

MouseEvent

MousePressed(MouseEvent)

public virtual void MousePressed(MouseEvent arg0)

Parameters

arg0 MouseEvent

MouseEvent

MouseReleased(MouseEvent)

public virtual void MouseReleased(MouseEvent arg0)

Parameters

arg0 MouseEvent

MouseEvent

MouseWheelMoved(MouseWheelEvent)

public virtual void MouseWheelMoved(MouseWheelEvent arg0)

Parameters

arg0 MouseWheelEvent

MouseWheelEvent