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

org.dominokit.domino.ui.utils.HasSelectionSupport Maven / Gradle / Ivy

There is a newer version: 1.0.139
Show newest version
package org.dominokit.domino.ui.utils;

import java.util.List;

public interface HasSelectionSupport {

    List getSelectedItems();

    List getItems();

    void onSelectionChange(T source);

    boolean isSelectable();

    default void selectAll() {
    }

    default void deselectAll() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy