List of usage examples for javax.swing JTable subclass-usage
From source file org.kuali.test.ui.base.BaseTable.java
/** * * @author rbtucker */ public class BaseTable extends JTable implements ClipboardOwner { private boolean initializing = true;
From source file org.pentaho.reporting.ui.datasources.table.TableEditor.java
public class TableEditor extends JTable { private static final Log logger = LogFactory.getLog(TableEditor.class); private TableEditorModel tableModel; private TableColumn selectedColumn; private EditableHeader tableHeader;
From source file org.opendatakit.briefcase.ui.FormTransferTable.java
public class FormTransferTable extends JTable { /** * */ private static final long serialVersionUID = 8511088963758308085L;
From source file com.diversityarrays.kdxplore.editing.EntityPropertiesTable.java
public abstract class EntityPropertiesTable<T> extends JTable { // static class EditableFlagRenderer extends DefaultTableCellRenderer { // @Override // protected void setValue(Object value) { // if (value instanceof Boolean) {
From source file com.db2eshop.gui.component.table.api.GenericTable.java
/**
* <p>
* Abstract GenericTable class.
* </p>
*
* @author Denis Neuling (denisneuling@gmail.com)
From source file org.executequery.gui.resultset.ResultSetTable.java
/**
*
* @author Takis Diakoumis
* @version $Revision: 1546 $
* @date $Date: 2015-12-22 15:54:37 +1100 (Tue, 22 Dec 2015) $
*/
From source file org.pentaho.reporting.libraries.designtime.swing.table.PropertyTable.java
public class PropertyTable extends JTable { public static final String DATETIME_FORMAT_DEFAULT = "yyyy-MM-dd HH:mm:ss.SSSS"; public static final String TIME_FORMAT_DEFAULT = "HH:mm:ss.SSSS"; public static final String DATE_FORMAT_DEFAULT = "yyyy-MM-dd"; private static Log logger = LogFactory.getLog(PropertyTable.class);
From source file org.esa.snap.ui.tooladapter.model.OperatorParametersTable.java
/**
* Table holding the operator parameter descriptors
*
* @author Ramona Manda
* @author Cosmin Cara
*/
From source file net.sf.jabref.gui.fieldeditors.FileListEditor.java
/** * Created by Morten O. Alver 2007.02.22 */ public class FileListEditor extends JTable implements FieldEditor, DownloadExternalFile.DownloadCallback { private static final Log LOGGER = LogFactory.getLog(FileListEditor.class);
From source file SortableTable.java
/** * A simple extension of JTable that supports the use of a SortableTableModel. * * @author David Gilbert */ public class SortableTable extends JTable {