List of usage examples for javax.swing.table AbstractTableModel subclass-usage
From source file com.microsoft.alm.plugin.idea.ui.common.ServerContextTableModel.java
public class ServerContextTableModel extends AbstractTableModel { public enum Column { REPOSITORY, PROJECT, COLLECTION, ACCOUNT } public final static Column[] VSO_REPO_COLUMNS = new Column[] { Column.REPOSITORY, Column.PROJECT,
From source file org.kootox.episodesmanager.ui.admin.SearchResultTableModel.java
/** * Model of the SearchResultUI. * @author couteau */ public class SearchResultTableModel extends AbstractTableModel {
From source file com.moneydance.modules.features.importlist.controller.FileTableModel.java
/**
* This class provides a <code>TableModel</code> implementation for a given
* <code>List</code> of <code>File</code>s. It takes care of the formatting and
* caching of its table values. The first two columns represent the name of the
* file and the date of its last modification, the last two columns represent
* the action buttons to import and delete the file, respectively.
From source file hermes.fix.FIXMessageTableModel.java
/**
* @author colincrist@hermesjms.com
* @version $Id: FIXMessageTableModel.java,v 1.4 2006/05/06 17:22:56 colincrist
* Exp $
*/
From source file org.openconcerto.erp.core.humanresources.payroll.ui.ProfilPayeModel.java
public class ProfilPayeModel extends AbstractTableModel { private int idProfil; private final static SQLTable TABLE_PROFIL = Configuration.getInstance().getBase() .getTable("PROFIL_PAYE_ELEMENT"); // Vecteur qui contient les rubriques du profil
From source file net.kamhon.ieagle.swing.table.KTableModel.java
public class KTableModel<T> extends AbstractTableModel { private static final long serialVersionUID = 1L; private static final Log log = LogFactory.getLog(KTableModel.class); @SuppressWarnings("unused")
From source file edu.harvard.mcz.imagecapture.RunnableJobTableModel.java
/** JobTableModel * * @author Paul J. Morris * */ public class RunnableJobTableModel extends AbstractTableModel implements RunnerListener {
From source file uk.nhs.cfh.dsp.srth.desktop.modules.queryresultspanel.model.table.ClinicalEntryTableModel.java
/**
* A custom {@link javax.swing.table.TableModel} that handles data that is a
* {@link java.util.Collection} of {@link uk.nhs.cfh.dsp.srth.information.model.om.ehr.entry.ClinicalEntry} objects.
*
* <br>Version : @#VersionNumber#@
* <br>Written by @author Jay Kola
From source file MainClass.java
class MixerModel extends AbstractTableModel { String headers[] = { "Track", "Start", "Stop", "Left Volume", "Right Volume" }; Class columnClasses[] = { String.class, String.class, String.class, Volume.class, Volume.class };
From source file org.intermine.common.swing.table.GenericTableModel.java
/** * A generic and extended version of the AbstractTableModel. * * @param <T> The type of items stored in this model. */ public abstract class GenericTableModel<T> extends AbstractTableModel implements Iterable<T> {