![JAR search and dependency download from the Maven repository](/logo.png)
com.extjs.gxt.ui.client.widget.selection.SelectionModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxt Show documentation
Show all versions of gxt Show documentation
Rich Internet Application Framework for GWT
/*
* Sencha GXT 2.3.0 - Sencha for GWT
* Copyright(c) 2007-2013, Sencha, Inc.
* [email protected]
*
* http://www.sencha.com/products/gxt/license/
*/
package com.extjs.gxt.ui.client.widget.selection;
import java.util.List;
import com.extjs.gxt.ui.client.widget.Component;
import com.extjs.gxt.ui.client.widget.Container;
/**
* Base interface for selection models. Defines the minimum methods required by
* a selection model.
*
* @param the selection container type
* @param the item type
*/
public interface SelectionModel, T extends Component> {
/**
* Binds the selection model to the container.
*
* @param container the container
*/
public void bind(C container);
/**
* Deselects the item at the given index.
*
* @param index the index of the item to be deselected
*/
public void deselect(int index);
/**
* Deselects the range.
*
* @param start the start index
* @param end the end index
*/
public void deselect(int start, int end);
/**
* Deselects the items.
*
* @param items the item
*/
public void deselect(List items);
/**
* Deselects the items.
*
* @param items the items to deselect
*/
public void deselect(T... items);
/**
* Deselects the item.
*
* @param item the item to be deselected
*/
public void deselect(T item);
/**
* Deselects all selections.
*/
public void deselectAll();
/**
* Returns the selected item.
*/
public T getSelectedItem();
/**
* Returns the selected items.
*/
public List getSelectedItems();
/**
* Returns true if the item is selcted.
*
* @param item the item
* @return true if selected
*/
public boolean isSelected(T item);
/**
* Refreshes the current selections.
*/
public void refresh();
/**
* Selects the item at the given index.
*
* @param index the index of the item to be selected
* @param keepExisting true to keep existing selected
*/
public void select(int index, boolean keepExisting);
/**
* Selects the range.
*
* @param start the start index
* @param end the end index
* @param keepExisting true to keep existing selected
*/
public void select(int start, int end, boolean keepExisting);
/**
* Selects the items. Selects the first item for single-select.
*
* @param items the items to select
* @param keepExisting true to keep existing selected
*/
public void select(List items, boolean keepExisting);
/**
* Selects the items. Selects the first item for single-select.
*
* @param keepExisting true to keep existing selected
* @param items the items
*/
public void select(boolean keepExisting, T... items);
/**
* Selects the item.
*
* @param item the item
* @param keepExisting true to keep existing selected
*/
public void select(T item, boolean keepExisting);
/**
* Selects all items.
*/
public void selectAll();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy