![JAR search and dependency download from the Maven repository](/logo.png)
ca.odell.glazedlists.gui.CheckableTableFormat Maven / Gradle / Ivy
/* 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);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy