Table of Contents

Class DocumentListener

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

Constructors

DocumentListener()

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

public DocumentListener()

DocumentListener(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 DocumentListener(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

Java class name to be instantiated

public override string BridgeClassName { get; }

Property Value

string

OnChangedUpdate

public Action<DocumentEvent> OnChangedUpdate { get; set; }

Property Value

Action<DocumentEvent>

Remarks

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

OnInsertUpdate

public Action<DocumentEvent> OnInsertUpdate { get; set; }

Property Value

Action<DocumentEvent>

Remarks

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

OnRemoveUpdate

public Action<DocumentEvent> OnRemoveUpdate { get; set; }

Property Value

Action<DocumentEvent>

Remarks

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

Methods

ChangedUpdate(DocumentEvent)

public virtual void ChangedUpdate(DocumentEvent arg0)

Parameters

arg0 DocumentEvent

DocumentEvent

InitializeHandlers()

Handlers initializer for DocumentListener

protected virtual void InitializeHandlers()

InsertUpdate(DocumentEvent)

public virtual void InsertUpdate(DocumentEvent arg0)

Parameters

arg0 DocumentEvent

DocumentEvent

RemoveUpdate(DocumentEvent)

public virtual void RemoveUpdate(DocumentEvent arg0)

Parameters

arg0 DocumentEvent

DocumentEvent