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

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 - 2024 Weber Informatics LLC | Privacy Policy