⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chemobjectpropertyeditortablemodel.java

📁 化学图形处理软件
💻 JAVA
字号:
/* $RCSfile$ * $Author: egonw $ * $Date: 2007-01-04 18:26:00 +0100 (Thu, 04 Jan 2007) $ * $Revision: 7634 $ *  * Copyright (C) 2003-2007  The Chemistry Development Kit (CDK) project *  * Contact: cdk-devel@lists.sourceforge.net *  * 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 2.1 * of the License, or (at your option) any later version. * All I ask is that proper credit is given for my work, which includes * - but is not limited to - adding the above copyright notice to the beginning * of your source code files, and to any copyright notice that you may distribute * with programs based on this work. *  * 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 Lesser General Public License for more details. *  * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */package org.openscience.cdk.applications.swing;import java.util.Iterator;import java.util.Map;import java.util.Vector;import javax.swing.table.AbstractTableModel;import org.openscience.cdk.ChemObject;/** * @cdk.module applications * @cdk.require swing */public class ChemObjectPropertyEditorTableModel extends AbstractTableModel {    	private static final long serialVersionUID = -9026379867364393754L;		private String[] columnNames;    private Vector names = new Vector();    private Vector values = new Vector();        public ChemObjectPropertyEditorTableModel() {        columnNames = new String[2];        columnNames[0] = "Name";        columnNames[1] = "Value";                insertBlankRow(0);    }            public void setValueAt(Object value, int row, int column) {        if (((String)value).length() == 0 ) {            names.removeElementAt(row);            values.removeElementAt(row);            fireTableRowsDeleted(row, row);            if (values.size() < 1) {                insertBlankRow(row);            }        } else if (column == 0) {            names.setElementAt(value, row);        } else if (column == 1) {            values.setElementAt(value, row);        }        if (row == values.size()-1) {            insertBlankRow(row);        }                fireTableCellUpdated(row, column);    }            public int getColumnCount() {        return columnNames.length;    }        public int getRowCount() {        return values.size();    }        public String getColumnName(int col) {        return columnNames[col];    }        public Class getColumnClass(int col) {        return getColumnName(col).getClass();    }        public Object getValueAt(int row, int col) {        if ( row >= values.size() || col >= columnNames.length ) {            return null;        }                if (col == 0) {            return names.elementAt(row);        } else if (col == 1) {            return values.elementAt(row);        } else {            return null;        }    }        public boolean isCellEditable(int row, int column) {        return true;    }        public void setChemObject(ChemObject object) {        cleanTable();        Map properties = object.getProperties();        Iterator iter = properties.keySet().iterator();        while (iter.hasNext()) {            Object key = iter.next();            if (key instanceof String) {                String keyName = (String)key;                names.addElement(keyName);                String value = (String)properties.get(keyName);                values.addElement(value);            }        }    }        private void cleanTable() {        names.clear();        values.clear();        fireTableDataChanged();        insertBlankRow(0);    }        private void insertBlankRow(int row) {        names.addElement("");        values.addElement("");        fireTableRowsInserted(row+1, row+1);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -