Table of Contents

Class ListDataListener

Namespace
Javax.Swing.Event
Assembly
MASES.JNet.dll
public class ListDataListener : EventListener, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, IEventListener, IListDataListener
Inheritance
ListDataListener
Implements
Derived
Inherited Members
Extension Methods

Constructors

ListDataListener()

Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge

public ListDataListener()

ListDataListener(params object[])

Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class

public ListDataListener(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

Java class name to be instantiated

public override string BridgeClassName { get; }

Property Value

string

OnContentsChanged

public Action<ListDataEvent> OnContentsChanged { get; set; }

Property Value

Action<ListDataEvent>

Remarks

If OnContentsChanged has a value it takes precedence over corresponding class method

OnIntervalAdded

public Action<ListDataEvent> OnIntervalAdded { get; set; }

Property Value

Action<ListDataEvent>

Remarks

If OnIntervalAdded has a value it takes precedence over corresponding class method

OnIntervalRemoved

public Action<ListDataEvent> OnIntervalRemoved { get; set; }

Property Value

Action<ListDataEvent>

Remarks

If OnIntervalRemoved has a value it takes precedence over corresponding class method

Methods

ContentsChanged(ListDataEvent)

public virtual void ContentsChanged(ListDataEvent arg0)

Parameters

arg0 ListDataEvent

ListDataEvent

InitializeHandlers()

Handlers initializer for ListDataListener

protected virtual void InitializeHandlers()

IntervalAdded(ListDataEvent)

public virtual void IntervalAdded(ListDataEvent arg0)

Parameters

arg0 ListDataEvent

ListDataEvent

IntervalRemoved(ListDataEvent)

public virtual void IntervalRemoved(ListDataEvent arg0)

Parameters

arg0 ListDataEvent

ListDataEvent