📄 defaultcelleditor.java
字号:
/* DefaultCellEditor.java -- Copyright (C) 2002 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING. If not, write to theFree Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library. Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule. An independent module is a module which is not derived fromor based on this library. If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so. If you do not wish to do so, delete thisexception statement from your version. */package javax.swing;// Importsimport java.awt.*;import java.awt.event.*;import java.io.*;import java.util.*;import javax.swing.table.*;import javax.swing.tree.*;/** * DefaultCellEditor * @author Andrew Selkirk * @version 1.0 */public class DefaultCellEditor extends AbstractCellEditor implements TableCellEditor, TreeCellEditor { //------------------------------------------------------------- // Classes ---------------------------------------------------- //------------------------------------------------------------- /** * EditorDelegate */ protected class EditorDelegate implements ActionListener, ItemListener, Serializable { //------------------------------------------------------------- // Variables -------------------------------------------------- //------------------------------------------------------------- /** * value */ protected Object value; //------------------------------------------------------------- // Initialization --------------------------------------------- //------------------------------------------------------------- /** * Constructor EditorDelegate * @param value0 TODO */ protected EditorDelegate(DefaultCellEditor editor) { // TODO } // EditorDelegate() //------------------------------------------------------------- // Methods ---------------------------------------------------- //------------------------------------------------------------- /** * setValue * @param event TODO */ public void setValue(Object event) { // TODO } // setValue() /** * getCellEditorValue * @returns Object */ public Object getCellEditorValue() { return null; // TODO } // getCellEditorValue() /** * isCellEditable * @param event TODO * @returns boolean */ public boolean isCellEditable(EventObject event) { return false; // TODO } // isCellEditable() /** * shouldSelectCell * @param event TODO * @returns boolean */ public boolean shouldSelectCell(EventObject event) { return false; // TODO } // shouldSelectCell() /** * stopCellEditing * @returns boolean */ public boolean stopCellEditing() { return false; // TODO } // stopCellEditing() /** * cancelCellEditing */ public void cancelCellEditing() { // TODO } // cancelCellEditing() /** * startCellEditing * @param event TODO * @returns boolean */ public boolean startCellEditing(EventObject event) { return false; // TODO } // startCellEditing() /** * actionPerformed * @param event TODO */ public void actionPerformed(ActionEvent event) { // TODO } // actionPerformed() /** * itemStateChanged * @param event TODO */ public void itemStateChanged(ItemEvent event) { // TODO } // itemStateChanged() } // EditorDelegate //------------------------------------------------------------- // Variables -------------------------------------------------- //------------------------------------------------------------- /** * editorComponent */ protected JComponent editorComponent; /** * delegate */ protected EditorDelegate delegate; /** * clickCountToStart */ protected int clickCountToStart; //------------------------------------------------------------- // Initialization --------------------------------------------- //------------------------------------------------------------- /** * Constructor DefaultCellEditor * @param textfield TODO */ public DefaultCellEditor(JTextField textfield) { // TODO } // DefaultCellEditor() /** * Constructor DefaultCellEditor * @param checkbox TODO */ public DefaultCellEditor(JCheckBox checkbox) { // TODO } // DefaultCellEditor() /** * Constructor DefaultCellEditor * @param combobox TODO */ public DefaultCellEditor(JComboBox combobox) { // TODO } // DefaultCellEditor() //------------------------------------------------------------- // Methods ---------------------------------------------------- //------------------------------------------------------------- /** * getComponent * @returns Component */ public Component getComponent() { return null; // TODO } // getComponent() /** * getClickCountToStart * @returns int */ public int getClickCountToStart() { return 0; // TODO } // getClickCountToStart() /** * setClickCountToStart * @param count TODO */ public void setClickCountToStart(int count) { // TODO } // setClickCountToStart() /** * getCellEditorValue * @returns Object */ public Object getCellEditorValue() { return null; // TODO } // getCellEditorValue() /** * isCellEditable * @param event TODO * @returns boolean */ public boolean isCellEditable(EventObject event) { return false; // TODO } // isCellEditable() /** * shouldSelectCell * @param event TODO * @returns boolean */ public boolean shouldSelectCell(EventObject event) { return false; // TODO } // shouldSelectCell() /** * stopCellEditing * @returns boolean */ public boolean stopCellEditing() { return false; // TODO } // stopCellEditing() /** * cancelCellEditing */ public void cancelCellEditing() { // TODO } // cancelCellEditing() /** * getTreeCellEditorComponent * @param tree TODO * @param value TODO * @param isSelected TODO * @param expanded TODO * @param leaf TODO * @param row TODO * @returns Component */ public Component getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) { return null; // TODO } // getTreeCellEditorComponent() /** * getTableCellEditorComponent * @param tree TODO * @param value TODO * @param isSelected TODO * @param row TODO * @param column TODO * @returns Component */ public Component getTableCellEditorComponent(JTable tree, Object value, boolean isSelected, int row, int column) { return null; // TODO } // getTableCellEditorComponent()} // DefaultCellEditor
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -