List of usage examples for javax.swing JTable subclass-usage
From source file RowNumberHeader.java
public class RowNumberHeader extends JTable { protected JTable mainTable; public RowNumberHeader(JTable table) { super();
From source file se.cambio.cds.gdl.editor.view.tables.TerminologyTable.java
public class TerminologyTable extends JTable { /** * */ private static final long serialVersionUID = 1L;
From source file MainClass.java
class HeaderlessTable extends JTable { public HeaderlessTable(Object rowData[][], Object columnNames[]) { super(rowData, columnNames); } protected void configureEnclosingScrollPane() {
From source file PropertyTable.java
/** * This class is a JTable subclass that displays a table of the JavaBeans * properties of any specified class. */ public class PropertyTable extends JTable { /** This main method allows the class to be demonstrated standalone */
From source file dmh.kuebiko.view.NoteTable.java
/** * UI table component for displaying a list of notes. * * @author davehuffman */ public class NoteTable extends JTable {
From source file org.tinymediamanager.ui.components.MediaIdTable.java
/** * The class MediaIdTable is used to display / edit media ids * * @author Manuel Laggner */ public class MediaIdTable extends JTable {
From source file org.pentaho.reporting.designer.extensions.pentaho.repository.dialogs.RepositoryTable.java
public class RepositoryTable extends JTable { private class DateCellRenderer extends DefaultTableCellRenderer { /** * Creates a default table cell renderer. */ public DateCellRenderer() {
From source file net.sourceforge.jasa.view.OrderBookView.java
/**
* A report which provides a graphical table depicting the order-book
* which is updated live as the simulation progresses.
*
* @author Steve Phelps
*/
From source file org.drugis.addis.gui.components.EnhancedTable.java
@SuppressWarnings("serial") public class EnhancedTable extends JTable { private static final class EntityRenderer implements TableCellRenderer { private final TableCellRenderer d_defaultRenderer;
From source file com.att.aro.ui.model.ImageBPTable.java
public class ImageBPTable<T> extends JTable { private static final long serialVersionUID = 1L; // Listener to handle the events on table. private MouseListener mouseListener = new MouseAdapter() { private boolean lastClicked = false;