0N/A/*
3853N/A * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
0N/A *
0N/A * Redistribution and use in source and binary forms, with or without
0N/A * modification, are permitted provided that the following conditions
0N/A * are met:
0N/A *
0N/A * - Redistributions of source code must retain the above copyright
0N/A * notice, this list of conditions and the following disclaimer.
0N/A *
0N/A * - Redistributions in binary form must reproduce the above copyright
0N/A * notice, this list of conditions and the following disclaimer in the
0N/A * documentation and/or other materials provided with the distribution.
0N/A *
2362N/A * - Neither the name of Oracle nor the names of its
0N/A * contributors may be used to endorse or promote products derived
0N/A * from this software without specific prior written permission.
0N/A *
0N/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
0N/A * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
0N/A * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
0N/A * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
0N/A * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
0N/A * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
0N/A * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
0N/A * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
0N/A * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
0N/A * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
0N/A * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
0N/A */
0N/A
4378N/A/*
4378N/A * This source code is provided to illustrate the usage of a given feature
4378N/A * or technique and has been deliberately simplified. Additional steps
4378N/A * required for a production-quality application, such as security checks,
4378N/A * input validation and proper error handling, might not be present in
4378N/A * this sample code.
4378N/A */
4378N/A
4378N/A
0N/A
0N/A/**
0N/A * In a chain of data manipulators some behaviour is common. TableMap
0N/A * provides most of this behavour and can be subclassed by filters
0N/A * that only need to override a handful of specific methods. TableMap
0N/A * implements TableModel by routing all requests to its model, and
0N/A * TableModelListener by routing all events to its listeners. Inserting
0N/A * a TableMap which has not been subclassed into a chain of table filters
0N/A * should have no effect.
0N/A *
3853N/A * @author Philip Milne
3853N/A */
0N/Aimport javax.swing.table.*;
0N/Aimport javax.swing.event.TableModelListener;
0N/Aimport javax.swing.event.TableModelEvent;
0N/A
3853N/A
3853N/A@SuppressWarnings("serial")
3853N/Apublic class TableMap extends AbstractTableModel implements TableModelListener {
3853N/A
0N/A protected TableModel model;
0N/A
3853N/A public TableModel getModel() {
0N/A return model;
0N/A }
0N/A
3853N/A public void setModel(TableModel model) {
0N/A this.model = model;
0N/A model.addTableModelListener(this);
0N/A }
0N/A
0N/A // By default, Implement TableModel by forwarding all messages
0N/A // to the model.
0N/A public Object getValueAt(int aRow, int aColumn) {
0N/A return model.getValueAt(aRow, aColumn);
0N/A }
0N/A
3853N/A @Override
0N/A public void setValueAt(Object aValue, int aRow, int aColumn) {
0N/A model.setValueAt(aValue, aRow, aColumn);
0N/A }
0N/A
0N/A public int getRowCount() {
0N/A return (model == null) ? 0 : model.getRowCount();
0N/A }
0N/A
0N/A public int getColumnCount() {
0N/A return (model == null) ? 0 : model.getColumnCount();
0N/A }
0N/A
3853N/A @Override
0N/A public String getColumnName(int aColumn) {
0N/A return model.getColumnName(aColumn);
0N/A }
0N/A
3853N/A @Override
0N/A public Class getColumnClass(int aColumn) {
0N/A return model.getColumnClass(aColumn);
0N/A }
0N/A
3853N/A @Override
0N/A public boolean isCellEditable(int row, int column) {
3853N/A return model.isCellEditable(row, column);
0N/A }
0N/A//
0N/A// Implementation of the TableModelListener interface,
0N/A//
0N/A
0N/A // By default forward all events to all the listeners.
0N/A public void tableChanged(TableModelEvent e) {
0N/A fireTableChanged(e);
0N/A }
0N/A}