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

org.nuiton.math.matrix.gui.MatrixTableModel Maven / Gradle / Ivy

The newest version!
/* *##% NuitonMatrix
 * Copyright (C) 2004 - 2009 CodeLutin
 *
 * This program 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 3 of the
 * License, or (at your option) any later version.
 *
 * 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 Lesser Public License for more details.
 *
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * . ##%*/

package org.nuiton.math.matrix.gui;

import javax.swing.table.TableCellRenderer;
import javax.swing.table.TableModel;

import org.nuiton.math.matrix.MatrixND;

/**
 * MatrixTableModel.
 *
 * Created: 22 mars 2006 12:53:22
 *
 * @author poussin
 * @version $Revision: 164 $
 *
 * Last update: $Date: 2009-06-16 20:13:11 +0200 (mar., 16 juin 2009) $
 * by : $Author: tchemit $
 *
 * TODO Javadoc ?
 */
public interface MatrixTableModel extends TableModel {

    void setMatrix(MatrixND m);

    void setEnabled(boolean enabled);

    TableCellRenderer getMatrixCellRenderer();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy