ca.odell.glazedlists.gui.CheckableTableFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glazedlists_java15 Show documentation
Show all versions of glazedlists_java15 Show documentation
Event-driven lists for dynamically filtered and sorted tables
The newest version!
/* Glazed Lists (c) 2003-2006 */
/* http://publicobject.com/glazedlists/ publicobject.com,*/
/* O'Dell Engineering Ltd.*/
package ca.odell.glazedlists.gui;
/**
* Specifies how to check table elements.
*
* @author Jesse Wilson
*/
public interface CheckableTableFormat extends TableFormat {
/**
* Sets the specified object as checked.
*/
public void setChecked(E baseObject, boolean checked);
/**
* Gets whether the specified object is checked.
*/
public boolean getChecked(E baseObject);
}