Example usage for com.google.gwt.view.client CellPreviewEvent.Handler interface-usage

List of usage examples for com.google.gwt.view.client CellPreviewEvent.Handler interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.view.client CellPreviewEvent.Handler interface-usage.

Usage

From source file org.gss_project.gss.web.client.GSSSelectionEventManager.java

/**
 * An implementation of {@link CellPreviewEvent.Handler} that adds selection
 * support via the spacebar and mouse clicks and handles the control key.
 * 
 * <p>
 * If the {@link HasData} source of the selection event uses a

From source file org.rstudio.studio.client.workbench.views.source.editors.explorer.view.ObjectExplorerDataGrid.java

public class ObjectExplorerDataGrid extends VirtualizedDataGrid<ObjectExplorerDataGrid.Data>
        implements AttachEvent.Handler, ClickHandler, RowHoverEvent.Handler,
        CellPreviewEvent.Handler<ObjectExplorerDataGrid.Data> {
    private static interface Filter<T> {
        public boolean accept(T data);
    }