X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Futil%2FTableSorter.java;h=5e9556e2d9971aa69e6366b59bbdb1f6fa30ba52;hb=e16c0028eadeb0c5a39860e11bebfb58bda84503;hp=5f3b2a4eb6a6da36edf68ffc56f9e6417822b268;hpb=2de8acfae59aced665e4c37ad0f7dcc2ed68818e;p=jalview.git diff --git a/src/jalview/util/TableSorter.java b/src/jalview/util/TableSorter.java index 5f3b2a4..5e9556e 100755 --- a/src/jalview/util/TableSorter.java +++ b/src/jalview/util/TableSorter.java @@ -1,20 +1,19 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Development Version 2.4.1) - * Copyright (C) 2009 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) + * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle * - * 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 version. + * This file is part of Jalview. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * Jalview 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 3 of the License, or (at your option) any later version. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with Jalview. If not, see . */ package jalview.util; @@ -35,30 +34,33 @@ import javax.swing.table.*; * getValueAt(row, col)) they are passed to the underlying model after the row * numbers have been translated via the internal mapping array. This way, the * TableSorter appears to hold another copy of the table with the rows in a - * different order.

TableSorter registers itself as a listener to the - * underlying model, just as the JTable itself would. Events recieved from the - * model are examined, sometimes manipulated (typically widened), and then - * passed on to the TableSorter's listeners (typically the JTable). If a change - * to the model has invalidated the order of TableSorter's rows, a note of this - * is made and the sorter will resort the rows the next time a value is - * requested.

When the tableHeader property is set, either by using the - * setTableHeader() method or the two argument constructor, the table header may - * be used as a complete UI for TableSorter. The default renderer of the - * tableHeader is decorated with a renderer that indicates the sorting status of - * each column. In addition, a mouse listener is installed with the following - * behavior: + * different order. + *

+ * TableSorter registers itself as a listener to the underlying model, just as + * the JTable itself would. Events recieved from the model are examined, + * sometimes manipulated (typically widened), and then passed on to the + * TableSorter's listeners (typically the JTable). If a change to the model has + * invalidated the order of TableSorter's rows, a note of this is made and the + * sorter will resort the rows the next time a value is requested. + *

+ * When the tableHeader property is set, either by using the setTableHeader() + * method or the two argument constructor, the table header may be used as a + * complete UI for TableSorter. The default renderer of the tableHeader is + * decorated with a renderer that indicates the sorting status of each column. + * In addition, a mouse listener is installed with the following behavior: *

- *

This is a long overdue rewrite of a class of the same name that first + *

+ * This is a long overdue rewrite of a class of the same name that first * appeared in the swing table demos in 1997. * * @author Philip Milne @@ -574,9 +576,7 @@ public class TableSorter extends AbstractTableModel JLabel l = (JLabel) c; l.setHorizontalTextPosition(JLabel.LEFT); int modelColumn = table.convertColumnIndexToModel(column); - l - .setIcon(getHeaderRendererIcon(modelColumn, l.getFont() - .getSize())); + l.setIcon(getHeaderRendererIcon(modelColumn, l.getFont().getSize())); } return c; }