All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jdesktop.swingx.sort.TableSortController Maven / Gradle / Ivy

The newest version!
/*
 * $Id$
 *
 * Copyright 2009 Sun Microsystems, Inc., 4150 Network Circle,
 * Santa Clara, California 95054, U.S.A. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * This library 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
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */
package org.jdesktop.swingx.sort;

import java.text.Collator;
import java.util.Comparator;

import javax.swing.table.TableModel;

/**
 * A SortController to use for a JXTable.

* * @author Jeanette Winzenburg */ public class TableSortController extends DefaultSortController { /** * Underlying model. */ private M tableModel; public TableSortController() { this(null); } /** * @param model */ public TableSortController(M model) { super(); setModel(model); } /** * Sets the TableModel to use as the underlying model * for this TableRowSorter. A value of null * can be used to set an empty model. * * @param model the underlying model to use, or null */ public void setModel(M model) { tableModel = model; if (model != null) cachedModelRowCount = model.getRowCount(); setModelWrapper(new TableRowSorterModelWrapper()); } /** * Returns the Comparator for the specified * column. If a Comparator has not been specified using * the setComparator method a Comparator * will be returned based on the column class * (TableModel.getColumnClass) of the specified column. * If the column class is String, * Collator.getInstance is returned. If the * column class implements Comparable a private * Comparator is returned that invokes the * compareTo method. Otherwise * Collator.getInstance is returned.

* * PENDING JW: think about implications to string value lookup! * * @throws IndexOutOfBoundsException {@inheritDoc} */ @Override public Comparator getComparator(int column) { Comparator comparator = super.getComparator(column); if (comparator != null) { return comparator; } Class columnClass = getModel().getColumnClass(column); if (columnClass == String.class) { return Collator.getInstance(); } if (Comparable.class.isAssignableFrom(columnClass)) { return COMPARABLE_COMPARATOR; } return Collator.getInstance(); } /** * {@inheritDoc}

* Note: must implement same logic as the overridden comparator * lookup, otherwise will throw ClassCastException because * here the comparator is never null.

* * PENDING JW: think about implications to string value lookup! * * @throws IndexOutOfBoundsException {@inheritDoc} */ @Override protected boolean useToString(int column) { Comparator comparator = super.getComparator(column); if (comparator != null) { return false; } Class columnClass = getModel().getColumnClass(column); if (columnClass == String.class) { return false; } if (Comparable.class.isAssignableFrom(columnClass)) { return false; } return true; } /** * Implementation of DefaultRowSorter.ModelWrapper that delegates to a * TableModel. */ private class TableRowSorterModelWrapper extends ModelWrapper { @Override public M getModel() { return tableModel; } @Override public int getColumnCount() { return (tableModel == null) ? 0 : tableModel.getColumnCount(); } @Override public int getRowCount() { return (tableModel == null) ? 0 : tableModel.getRowCount(); } @Override public Object getValueAt(int row, int column) { return tableModel.getValueAt(row, column); } @Override public String getStringValueAt(int row, int column) { return getStringValueProvider().getStringValue(row, column) .getString(getValueAt(row, column)); } @Override public Integer getIdentifier(int index) { return index; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy