com.vaadin.ui
Interface Grid.EditorListener

All Superinterfaces:
java.io.Serializable
Enclosing class:
Grid

public static interface Grid.EditorListener
extends java.io.Serializable

Interface for an editor event listener


Field Summary
static java.lang.reflect.Method EDITOR_CLOSE_METHOD
           
static java.lang.reflect.Method EDITOR_MOVE_METHOD
           
static java.lang.reflect.Method EDITOR_OPEN_METHOD
           
 
Method Summary
 void editorClosed(Grid.EditorCloseEvent e)
          Called when an editor is closed
 void editorMoved(Grid.EditorMoveEvent e)
          Called when an editor is reopened without closing it first
 void editorOpened(Grid.EditorOpenEvent e)
          Called when an editor is opened
 

Field Detail

EDITOR_OPEN_METHOD

static final java.lang.reflect.Method EDITOR_OPEN_METHOD

EDITOR_MOVE_METHOD

static final java.lang.reflect.Method EDITOR_MOVE_METHOD

EDITOR_CLOSE_METHOD

static final java.lang.reflect.Method EDITOR_CLOSE_METHOD
Method Detail

editorOpened

void editorOpened(Grid.EditorOpenEvent e)
Called when an editor is opened

Parameters:
e - an editor open event object

editorMoved

void editorMoved(Grid.EditorMoveEvent e)
Called when an editor is reopened without closing it first

Parameters:
e - an editor move event object

editorClosed

void editorClosed(Grid.EditorCloseEvent e)
Called when an editor is closed

Parameters:
e - an editor close event object


Copyright © 2000-2014 Vaadin Ltd. All Rights Reserved.