X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Futil%2FTableSorter.java;h=495fb21ccb47327be36634952fdde3e3d3ff9f00;hb=5e1ec7b34e30fb44c1dfd70b487997b278c5ef1f;hp=a6ead1524b1fc6ede8ccca6d7252d8bc967c74f0;hpb=506d60f0e188723ddc91c26824b41ac7034df3fe;p=jalview.git diff --git a/src/jalview/util/TableSorter.java b/src/jalview/util/TableSorter.java index a6ead15..495fb21 100755 --- a/src/jalview/util/TableSorter.java +++ b/src/jalview/util/TableSorter.java @@ -1,20 +1,19 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.4) - * Copyright (C) 2008 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6) + * Copyright (C) 2010 J Procter, AM Waterhouse, 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; }