Example usage for org.eclipse.jface.viewers ICellEditorListener editorValueChanged

List of usage examples for org.eclipse.jface.viewers ICellEditorListener editorValueChanged

Introduction

In this page you can find the example usage for org.eclipse.jface.viewers ICellEditorListener editorValueChanged.

Prototype

public void editorValueChanged(boolean oldValidState, boolean newValidState);

Source Link

Document

Notifies that the end user is changing the value in the cell editor.

Usage

From source file:net.rim.ejde.internal.ui.editors.locale.ResourceCellEditor.java

License:Open Source License

private void fireValueChangedEvent(boolean oldValidState, boolean newValidState) {
    for (ICellEditorListener listener : _listeners) {
        listener.editorValueChanged(oldValidState, newValidState);
    }/*from  www .  j a  v  a  2s  .c  om*/
}