List of usage examples for javax.swing.event TableModelListener interface-usage
From source file Main.java
class MyTableModelListener implements TableModelListener { JTable table; MyTableModelListener(JTable table) { this.table = table; }
From source file SampleSortingTableModel.java
class SampleSortingTableModel extends AbstractTableModel implements TableModelListener { protected TableModel base; protected int sortColumn; protected int[] row;
From source file org.springframework.richclient.table.AbstractTableModelFilter.java
/** * @author Keith Donald */ public class AbstractTableModelFilter extends AbstractTableModel implements TableModelListener { protected final Log logger = LogFactory.getLog(getClass());
From source file VGL.SummaryChartUI.java
/**
* Brian White Summer 2008
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
From source file com.vangent.hieos.logbrowser.util.TableModel.java
public class TableModel extends AbstractTableModel implements TableModelListener { private Vector<Vector<Object>> dataVector = new Vector<Vector<Object>>(); private Vector<String> headerVector = new Vector<String>(); private String xmlString; private Map fieldsAndFormats = null;
From source file org.openthinclient.console.util.FilterTableModel.java
/** * @author levigo */ public abstract class FilterTableModel extends AbstractTableModel implements TableModelListener { protected TableModel tableModel; private IntList filteredRowIndices = new ArrayIntList();
From source file hr.fer.zemris.vhdllab.platform.ui.wizard.support.PortValidationReporter.java
public class PortValidationReporter extends ApplicationServicesAccessor implements TableModelListener { private final BeanTableModel model; private final WizardPage page; private final int minimumPortCount; private final int maximumPortCount;
From source file blue.automation.Parameter.java
/**
* Data class to describe an automatable parameter's properties. This class
* should holds boundary information (min and max) as well as allows for
* listeners to follow changes to parameter information. A default value is also
* necessary.
*
From source file org.jdal.swing.TableEditor.java
/** * Simple table editor * * @author Jose Luis Martin - (jlm@joseluismartin.info) */ public class TableEditor<T> extends AbstractView<T> implements TableModelListener {
From source file verdandi.ui.ProjectViewerPanel.java
public class ProjectViewerPanel extends ProjectViewingPanel implements ActionListener, TableModelListener, PersistenceListener, DocumentListener, MouseListener { private static final Log LOG = LogFactory.getLog(ProjectViewerPanel.class);