All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.ui.components.grid.SingleSelectionModel Maven / Gradle / Ivy

There is a newer version: 8.27.3
Show newest version
/*
 * Copyright (C) 2000-2024 Vaadin Ltd
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See  for the full
 * license.
 */
package com.vaadin.ui.components.grid;

import com.vaadin.data.Binder;
import com.vaadin.event.selection.SelectionListener;
import com.vaadin.event.selection.SingleSelectionListener;
import com.vaadin.shared.Registration;
import com.vaadin.ui.SingleSelect;

/**
 * Single selection model interface for Grid.
 *
 * @author Vaadin Ltd
 * @since 8.0
 *
 * @param 
 *            the type of items in grid
 */
public interface SingleSelectionModel extends GridSelectionModel,
        com.vaadin.data.SelectionModel.Single {

    /**
     * Gets a wrapper to use this single selection model as a single select in
     * {@link Binder}.
     *
     * @return the single select wrapper
     */
    SingleSelect asSingleSelect();

    /**
     * {@inheritDoc}
     * 

* Use {@link #addSingleSelectionListener(SingleSelectionListener)} for more * specific single selection event. * * @see #addSingleSelectionListener(SingleSelectionListener) */ @Override public default Registration addSelectionListener( SelectionListener listener) { return addSingleSelectionListener( event -> listener.selectionChange(event)); } /** * Adds a single selection listener that is called when the value of this * select is changed either by the user or programmatically. * * @param listener * the value change listener, not {@code null} * @return a registration for the listener */ public Registration addSingleSelectionListener( SingleSelectionListener listener); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy