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

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

Introduction

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

Usage

From source file com.akanoo.client.views.SharingPopupView.java

public class SharingPopupView extends PopupViewWithUiHandlers<SharingPopupUiHandlers>
        implements SharingPopupPresenter.MyView, SelectionChangeEvent.Handler {

    /**
     * Resources that match the GWT standard style theme.
     */

From source file com.gafactory.core.client.ui.lists.BaseListPresenter.java

/**
 * @author Alexander Ostrovskiy (a.ostrovskiy)
 * @since 09.07.13
 */
@SuppressWarnings("TypeParameterNamingConvention")
public abstract class BaseListPresenter<T, Filter_ extends BaseFilter, View_ extends ListView<T, Filter_>, Proxy_ extends ProxyPlace<?>, Service_ extends ListingRestService<T>, Properties_ extends PropertyAccess<T>>

From source file cz.muni.fi.pa165.methanolmanager.frontend.client.bottles.BottlesPresenter.java

public class BottlesPresenter extends Presenter<BottlesPresenter.ViewDef, BottlesPresenter.Proxy>
        implements SelectionChangeEvent.Handler, AllBottlesStampedEvent.AllBottlesStampedHandler {

    public interface ViewDef extends View {
        AbstractButton getCreateButton();

From source file org.eclipse.che.ide.ext.datasource.client.editdatasource.EditDatasourcesPresenter.java

/**
 * The presenter for the datasource edit/delete datasources dialog.
 * 
 * @author "Mickal Leduque"
 */
public class EditDatasourcesPresenter implements EditDatasourcesView.ActionDelegate, DatasourceListChangeHandler,

From source file stroom.streamstore.client.presenter.InterceptingSelectionChangeHandler.java

public class InterceptingSelectionChangeHandler
        implements HasSelectionChangedHandlers, SelectionChangeEvent.Handler {
    private boolean ignoreNextEvent;
    private final HandlerManager handlerManager = new HandlerManager(this);

    @Override