
com.extjs.gxt.ui.client.widget.selection.CellSelectionModel 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
/*
* Ext GWT - Ext for GWT
* Copyright(c) 2007, 2008, Ext JS, LLC.
* [email protected]
*
* http://extjs.com/license
*/
package com.extjs.gxt.ui.client.widget.selection;
import com.extjs.gxt.ui.client.widget.Component;
import com.extjs.gxt.ui.client.widget.Container;
/**
* Defines the interface for containers which provide cell based selections.
*
* @param the container type
* @param the component type
*/
public interface CellSelectionModel {
/**
* Selects the cell.
*
* @param row the row index
* @param column the column index
*/
public void select(int row, int column);
/**
* Deselects the cell.
*
* @param row the row index
* @param column the column index
*/
public void deselect(int row, int column);
/**
* Returns true if the cell is selected.
*
* @param row the row index
* @param column the colum index
*/
public void isSelected(int row, int column);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy