Example usage for javax.swing.table AbstractTableModel subclass-usage

List of usage examples for javax.swing.table AbstractTableModel subclass-usage

Introduction

In this page you can find the example usage for javax.swing.table AbstractTableModel subclass-usage.

Usage

From source file StocksTable.java

class StockTableData extends AbstractTableModel {
    static final public ColumnData m_columns[] = { new ColumnData("Symbol", 100, JLabel.LEFT),
            new ColumnData("Name", 160, JLabel.LEFT), new ColumnData("Last", 100, JLabel.RIGHT),
            new ColumnData("Open", 100, JLabel.RIGHT), new ColumnData("Change", 100, JLabel.RIGHT),
            new ColumnData("Change %", 100, JLabel.RIGHT), new ColumnData("Volume", 100, JLabel.RIGHT) };

From source file it.cnr.icar.eric.client.ui.swing.RegistryObjectsTableModel.java

/**
 * A JTable that lists
 *
 * @author Jim Glennon
 *
 * @author <a href="mailto:Farrukh.Najmi@Sun.COM">Farrukh S. Najmi</a>

From source file Main.java

class ColorTableModel extends AbstractTableModel {

    Object rowData[][] = { { "1", Boolean.TRUE, Color.RED }, { "2", Boolean.TRUE, Color.BLUE },
            { "3", Boolean.FALSE, Color.GREEN }, { "4", Boolean.TRUE, Color.MAGENTA },
            { "5", Boolean.FALSE, Color.PINK }, };

From source file org.openconcerto.erp.model.FichePayeModel.java

public class FichePayeModel extends AbstractTableModel {

    // Rubrique
    private Vector<SQLRowValues> vectRubrique;
    private Vector<SQLRowValues> vectRowValsToDelete;

From source file TableCellRenderTest.java

/**
 * The planet table model specifies the values, rendering and editing properties for the planet
 * data.
 */
class PlanetTableModel extends AbstractTableModel {
    public String getColumnName(int c) {

From source file Main.java

class ColorTableModel extends AbstractTableModel {

    Object rowData[][] = { { "1", Boolean.TRUE, Color.RED }, { "2", Boolean.TRUE, Color.BLUE },
            { "3", Boolean.FALSE, Color.GREEN }, { "4", Boolean.TRUE, Color.MAGENTA },
            { "5", Boolean.FALSE, Color.PINK }, };

From source file Main.java

class ColorTableModel extends AbstractTableModel {

    Object rowData[][] = { { "1", Boolean.TRUE, Color.RED }, { "2", Boolean.TRUE, Color.BLUE },
            { "3", Boolean.FALSE, Color.GREEN }, { "4", Boolean.TRUE, Color.MAGENTA },
            { "5", Boolean.FALSE, Color.PINK }, };

From source file Main.java

class ColorTableModel extends AbstractTableModel {

    Object rowData[][] = { { "1", Boolean.TRUE, Color.RED }, { "2", Boolean.TRUE, Color.BLUE },
            { "3", Boolean.FALSE, Color.GREEN }, { "4", Boolean.TRUE, Color.MAGENTA },
            { "5", Boolean.FALSE, Color.PINK }, };

From source file org.pentaho.reporting.designer.core.editor.expressions.ExpressionPropertiesTableModel.java

public class ExpressionPropertiesTableModel extends AbstractTableModel
        implements ElementMetaDataTableModel, GroupingModel {
    private static final Log logger = LogFactory.getLog(ExpressionPropertiesTableModel.class);

    private static final Expression[] EMPTY_ELEMENTS = new Expression[0];
    private static final ExpressionPropertyMetaData[] EMPTY_METADATA = new ExpressionPropertyMetaData[0];

From source file org.kalypso.ogc.sensor.tableview.swing.tablemodel.ObservationTableModel.java

/**
 * table model which handles an IObservation. Can be used by JTable
 * <p>
 * Changes made in the table are directly reflected into the observations models.
 * 
 * @author schlienger