2005-07-16 00:30:23 +00:00
|
|
|
/* DefaultCellEditor.java --
|
2006-03-10 21:46:48 +00:00
|
|
|
Copyright (C) 2002, 2004, 2006, Free Software Foundation, Inc.
|
2005-07-16 00:30:23 +00:00
|
|
|
|
|
|
|
This file is part of GNU Classpath.
|
|
|
|
|
|
|
|
GNU Classpath is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the 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, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GNU Classpath; see the file COPYING. If not, write to the
|
|
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
02110-1301 USA.
|
|
|
|
|
|
|
|
Linking this library statically or dynamically with other modules is
|
|
|
|
making a combined work based on this library. Thus, the terms and
|
|
|
|
conditions of the GNU General Public License cover the whole
|
|
|
|
combination.
|
|
|
|
|
|
|
|
As a special exception, the copyright holders of this library give you
|
|
|
|
permission to link this library with independent modules to produce an
|
|
|
|
executable, regardless of the license terms of these independent
|
|
|
|
modules, and to copy and distribute the resulting executable under
|
|
|
|
terms of your choice, provided that you also meet, for each linked
|
|
|
|
independent module, the terms and conditions of the license of that
|
|
|
|
module. An independent module is a module which is not derived from
|
|
|
|
or based on this library. If you modify this library, you may extend
|
|
|
|
this exception to your version of the library, but you are not
|
|
|
|
obligated to do so. If you do not wish to do so, delete this
|
|
|
|
exception statement from your version. */
|
|
|
|
|
|
|
|
|
|
|
|
package javax.swing;
|
|
|
|
|
|
|
|
import java.awt.Component;
|
|
|
|
import java.awt.event.ActionEvent;
|
|
|
|
import java.awt.event.ActionListener;
|
|
|
|
import java.awt.event.ItemEvent;
|
|
|
|
import java.awt.event.ItemListener;
|
2005-09-23 21:31:04 +00:00
|
|
|
import java.awt.event.MouseEvent;
|
2005-07-16 00:30:23 +00:00
|
|
|
import java.io.Serializable;
|
|
|
|
import java.util.EventObject;
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
import javax.swing.JTable;
|
|
|
|
import javax.swing.JTextField;
|
|
|
|
import javax.swing.event.CellEditorListener;
|
2005-07-16 00:30:23 +00:00
|
|
|
import javax.swing.table.TableCellEditor;
|
|
|
|
import javax.swing.tree.TreeCellEditor;
|
|
|
|
|
|
|
|
/**
|
2005-09-23 21:31:04 +00:00
|
|
|
* The default implementation of {@link TableCellEditor} and
|
|
|
|
* {@link TreeCellEditor}. It provides editor components for
|
|
|
|
* some standard object types.
|
|
|
|
*
|
|
|
|
* @author Andrew Selkirk
|
2006-03-10 21:46:48 +00:00
|
|
|
* @author Audrius Meskauskas
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public class DefaultCellEditor
|
|
|
|
extends AbstractCellEditor
|
|
|
|
implements TableCellEditor, TreeCellEditor
|
|
|
|
{
|
|
|
|
private static final long serialVersionUID = 3564035141373880027L;
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* This changeable module access the editor component in the component
|
|
|
|
* specific way. For instance, to set the value for JTextField, we need to
|
|
|
|
* call setText(String), and for JCheckBox we need to call
|
|
|
|
* setSelected(boolean). Each default editor has the component specific
|
|
|
|
* derivative of this class. These derivatives are private inner classes of
|
|
|
|
* the DefaultCellEditor.
|
|
|
|
*
|
|
|
|
* The editor delegate is also set for the editor component as the action
|
|
|
|
* listener. It listens for the events that indicate that editing has stopped.
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
protected class EditorDelegate
|
|
|
|
implements ActionListener, ItemListener, Serializable
|
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
/**
|
|
|
|
* Use the serial version UID for interoperability.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
private static final long serialVersionUID = -1420007406015481933L;
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* The object value (updated when getting and setting the value).
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
protected Object value;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor EditorDelegate
|
|
|
|
*/
|
|
|
|
protected EditorDelegate()
|
|
|
|
{
|
2005-11-15 23:20:01 +00:00
|
|
|
// Nothing to do here.
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
2006-03-10 21:46:48 +00:00
|
|
|
|
2005-07-16 00:30:23 +00:00
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Set the value for the editor component. This method is normally
|
|
|
|
* overridden to set the value in the way, specific for the text
|
|
|
|
* component, check box or combo box.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param aValue the value to set (String, Boolean or Number).
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
2006-03-10 21:46:48 +00:00
|
|
|
public void setValue(Object aValue)
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
value = aValue;
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2006-03-10 21:46:48 +00:00
|
|
|
/**
|
|
|
|
* Get the value for the editor component. This method is normally
|
|
|
|
* overridden to obtain the value in the way, specific for the text
|
|
|
|
* component, check box or combo box.
|
|
|
|
*
|
|
|
|
* @return value the value of the component (String, Boolean or Number).
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public Object getCellEditorValue()
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
return value;
|
2006-03-10 21:46:48 +00:00
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* The default method returns true for the {@link MouseEvent} and false
|
|
|
|
* for any other events.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param event the event to check
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @return true if the passed event is the mouse event and false otherwise.
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public boolean isCellEditable(EventObject event)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
if (event == null || !(event instanceof MouseEvent) ||
|
|
|
|
(((MouseEvent) event).getClickCount() >= getClickCountToStart()))
|
|
|
|
return true;
|
|
|
|
return false;
|
2005-07-16 00:30:23 +00:00
|
|
|
} // isCellEditable()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Returns true to indicate that the editing cell can be selected.
|
|
|
|
*
|
|
|
|
* The default method returns true without action but may be overridden
|
|
|
|
* in derived classes for more specific behavior.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param event unused in default method
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @return true always
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public boolean shouldSelectCell(EventObject event)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
// return true to indicate that the editing cell may be selected
|
|
|
|
return true;
|
2006-03-10 21:46:48 +00:00
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Finish the cell editing session. This method notifies the registered
|
|
|
|
* cell editor listeners (including the table) that the editing has been
|
|
|
|
* stopped.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @return boolean
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public boolean stopCellEditing()
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
fireEditingStopped();
|
|
|
|
return true;
|
2005-07-16 00:30:23 +00:00
|
|
|
} // stopCellEditing()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Cancel the cell editing session. This method notifies the registered
|
|
|
|
* cell editor listeners (including the table) that the editing has been
|
2006-05-18 17:29:21 +00:00
|
|
|
* canceled.
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public void cancelCellEditing()
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
fireEditingCanceled();
|
2005-07-16 00:30:23 +00:00
|
|
|
} // cancelCellEditing()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Start editing session and returns true to indicate the editing has begun.
|
|
|
|
* The default method returns true without action but may be overridden
|
|
|
|
* in derived classes for more specific behavior.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param event the event.
|
|
|
|
*
|
|
|
|
* @return true, always
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public boolean startCellEditing(EventObject event)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
// return true to indicate that editing has begun
|
|
|
|
return true;
|
2005-07-16 00:30:23 +00:00
|
|
|
} // startCellEditing()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* This event is fired by the editor component (for instance, by pressing
|
|
|
|
* ENTER in the {@link JTextField}. The default method delegates call to
|
|
|
|
* the {@link #stopCellEditing}, finishing the editing session.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param event unused in default method
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public void actionPerformed(ActionEvent event)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
stopCellEditing();
|
2005-07-16 00:30:23 +00:00
|
|
|
} // actionPerformed()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* This event is fired by the editor component.The default method delegates
|
|
|
|
* call to the {@link #stopCellEditing}, finishing the editing session.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param event unused in default method
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public void itemStateChanged(ItemEvent event)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
stopCellEditing();
|
2005-07-16 00:30:23 +00:00
|
|
|
} // itemStateChanged()
|
|
|
|
|
2006-03-10 21:46:48 +00:00
|
|
|
/**
|
|
|
|
* Notify the registered listeners (including the table) that the editing
|
|
|
|
* has been completed.
|
|
|
|
*/
|
2005-09-23 21:31:04 +00:00
|
|
|
void fireEditingStopped()
|
|
|
|
{
|
|
|
|
CellEditorListener[] listeners = getCellEditorListeners();
|
|
|
|
for (int index = 0; index < listeners.length; index++)
|
|
|
|
listeners[index].editingStopped(changeEvent);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-03-10 21:46:48 +00:00
|
|
|
/**
|
|
|
|
* Notify the registered listeners (including the table) that the editing
|
|
|
|
* has been canceled.
|
|
|
|
*/
|
2005-09-23 21:31:04 +00:00
|
|
|
void fireEditingCanceled()
|
|
|
|
{
|
|
|
|
CellEditorListener[] listeners = getCellEditorListeners();
|
|
|
|
for (int index = 0; index < listeners.length; index++)
|
|
|
|
listeners[index].editingCanceled(changeEvent);
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
} // EditorDelegate
|
2006-03-10 21:46:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides getter and setter methods to work with the text component.
|
|
|
|
*
|
|
|
|
* @author Audrius Meskauskas (audriusa@Bioinformatics.org)
|
|
|
|
*/
|
|
|
|
private class JTextFieldDelegate extends EditorDelegate
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Use the serial version UID for interoperability.
|
|
|
|
*/
|
|
|
|
private static final long serialVersionUID = 1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the value for the editor component.
|
|
|
|
*
|
|
|
|
* @param aValue the value to set (toString() will be called).
|
|
|
|
*/
|
|
|
|
public void setValue(Object aValue)
|
|
|
|
{
|
|
|
|
value = aValue;
|
|
|
|
JTextField f = (JTextField) editorComponent;
|
|
|
|
if (value == null)
|
|
|
|
f.setText("");
|
|
|
|
else
|
|
|
|
f.setText(value.toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the value for the editor component.
|
|
|
|
*
|
|
|
|
* @return value the value of the component (String)
|
|
|
|
*/
|
|
|
|
public Object getCellEditorValue()
|
|
|
|
{
|
|
|
|
JTextField f = (JTextField) editorComponent;
|
|
|
|
return value = f.getText();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides getter and setter methods to work with the combo box.
|
|
|
|
*
|
|
|
|
* @author Audrius Meskauskas (audriusa@Bioinformatics.org)
|
|
|
|
*/
|
|
|
|
private class JComboBoxDelegate extends EditorDelegate
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Use the serial version UID for interoperability.
|
|
|
|
*/
|
|
|
|
private static final long serialVersionUID = 1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the value for the editor component.
|
|
|
|
*
|
|
|
|
* @param aValue the value to set.
|
|
|
|
*/
|
|
|
|
public void setValue(Object aValue)
|
|
|
|
{
|
|
|
|
value = aValue;
|
|
|
|
JComboBox c = (JComboBox) editorComponent;
|
|
|
|
if (value != null)
|
|
|
|
c.setSelectedItem(value);
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
|
2006-03-10 21:46:48 +00:00
|
|
|
/**
|
|
|
|
* Get the value for the editor component.
|
|
|
|
*
|
|
|
|
* @return value the value of the component (as String)
|
|
|
|
*/
|
|
|
|
public Object getCellEditorValue()
|
|
|
|
{
|
|
|
|
JComboBox c = (JComboBox) editorComponent;
|
|
|
|
return value = c.getSelectedItem();
|
String.java, [...]: Merge from GNU Classpath HEAD.
2006-06-09 Thomas Fitzsimmons <fitzsim@redhat.com>
* java/lang/String.java, classpath/native/jni/classpath/jcl.h,
classpath/native/jni/qt-peer/eventmethods.h,
classpath/native/jni/qt-peer/qtmenupeer.cpp,
classpath/native/jni/qt-peer/.cvsignore,
classpath/native/jni/gtk-peer/gdkdisplay.h,
classpath/native/jni/gtk-peer/cairographics2d.h,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_CairoGraphics2D.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkGraphicsEnvironment.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_ComponentGraphicsCopy.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_ComponentGraphics.c,
classpath/native/jni/gtk-peer/.cvsignore,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkImage.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkVolatileImage.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkToolkit.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkCanvasPeer.c,
classpath/native/jni/gtk-peer/gtkpeer.h,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkClipboard.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_CairoSurface.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkScreenGraphicsDevice.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkTextLayout.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkFramePeer.c,
classpath/native/jni/gtk-peer/Makefile.am,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkComponentPeer.c,
classpath/native/jawt/Makefile.am,
classpath/native/jawt/.cvsignore,
classpath/native/target/Linux/Makefile.in,
classpath/native/plugin/gcjwebplugin.cc,
classpath/native/plugin/Makefile.am,
classpath/native/plugin/.cvsignore,
classpath/resource/Makefile.in,
classpath/gnu/java/awt/peer/gtk/VolatileImageGraphics.java,
classpath/gnu/java/awt/peer/gtk/CairoGraphics2D.java,
classpath/gnu/java/awt/peer/gtk/CairoSurface.java,
classpath/gnu/java/awt/peer/gtk/GdkFontPeer.java,
classpath/gnu/java/awt/peer/gtk/GdkPixbufDecoder.java,
classpath/gnu/java/awt/peer/gtk/FreetypeGlyphVector.java,
classpath/gnu/java/awt/peer/gtk/GdkGraphicsEnvironment.java,
classpath/gnu/java/awt/peer/gtk/GdkGraphics2D.java,
classpath/gnu/java/awt/peer/gtk/ComponentGraphicsCopy.java,
classpath/gnu/java/awt/peer/gtk/GtkComponentPeer.java,
classpath/gnu/java/awt/peer/gtk/GdkGraphics.java,
classpath/gnu/java/awt/peer/gtk/GtkToolkit.java,
classpath/gnu/java/awt/peer/gtk/GdkScreenGraphicsDevice.java,
classpath/gnu/java/awt/peer/gtk/BufferedImageGraphics.java,
classpath/gnu/java/awt/peer/gtk/GdkTextLayout.java,
classpath/gnu/java/awt/peer/gtk/GdkGraphicsConfiguration.java,
classpath/gnu/java/awt/peer/gtk/ComponentGraphics.java,
classpath/gnu/java/awt/peer/gtk/CairoSurfaceGraphics.java,
classpath/gnu/java/awt/peer/gtk/GtkImage.java,
classpath/gnu/java/awt/peer/gtk/GtkVolatileImage.java,
classpath/gnu/java/awt/peer/gtk/GdkGlyphVector.java,
classpath/gnu/java/awt/peer/gtk/GtkCanvasPeer.java,
classpath/gnu/java/awt/peer/swing/SwingContainerPeer.java,
classpath/gnu/java/awt/peer/swing/SwingComponent.java,
classpath/gnu/java/awt/peer/swing/SwingTextFieldPeer.java,
classpath/gnu/java/awt/peer/swing/SwingMenuBarPeer.java,
classpath/gnu/java/awt/peer/swing/SwingFramePeer.java,
classpath/gnu/java/awt/peer/swing/SwingComponentPeer.java,
classpath/gnu/java/awt/peer/swing/SwingWindowPeer.java,
classpath/gnu/java/awt/print/JavaPrinterJob.java,
classpath/gnu/java/awt/print/PostScriptGraphics2D.java,
classpath/gnu/java/awt/print/SpooledDocument.java,
classpath/gnu/java/awt/print/JavaPrinterGraphics.java,
classpath/gnu/java/awt/BitwiseXORComposite.java,
classpath/gnu/java/awt/font/GNUGlyphVector.java,
classpath/gnu/java/awt/font/opentype/NameDecoder.java,
classpath/gnu/java/awt/java2d/RasterGraphics.java,
classpath/gnu/java/awt/java2d/TexturePaintContext.java,
classpath/gnu/java/awt/java2d/PolyEdge.java,
classpath/gnu/java/awt/java2d/AbstractGraphics2D.java,
classpath/gnu/java/awt/java2d/AlphaCompositeContext.java,
classpath/gnu/java/awt/java2d/ImagePaint.java,
classpath/gnu/java/awt/Buffers.java,
classpath/gnu/classpath/Configuration.java.in,
classpath/gnu/javax/swing/text/html/CombinedAttributes.java,
classpath/gnu/javax/swing/text/html/CharacterAttributeTranslator.java,
classpath/gnu/javax/swing/text/html/parser/htmlAttributeSet.java,
classpath/gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.java,
classpath/gnu/javax/swing/text/html/ImageViewIconFactory.java,
classpath/tools/toolwrapper.c,
classpath/tools/gnu/classpath/tools/native2ascii/Native2ASCII.java,
classpath/tools/gnu/classpath/tools/native2ascii/Messages.java,
classpath/tools/gnu/classpath/tools/getopt/FileArgumentCallback.java,
classpath/tools/gnu/classpath/tools/getopt/OptionGroup.java,
classpath/tools/gnu/classpath/tools/getopt/OptionException.java,
classpath/tools/gnu/classpath/tools/getopt/Messages.java,
classpath/tools/gnu/classpath/tools/getopt/Option.java,
classpath/tools/gnu/classpath/tools/getopt/Parser.java,
classpath/tools/gnu/classpath/tools/getopt/ClasspathToolParser.java,
classpath/tools/gnu/classpath/tools/jarsigner/JarSigner.java,
classpath/tools/gnu/classpath/tools/jarsigner/Main.java,
classpath/tools/gnu/classpath/tools/jarsigner/Messages.java,
classpath/tools/gnu/classpath/tools/jarsigner/package.html,
classpath/tools/gnu/classpath/tools/keytool/ListCmd.java,
classpath/tools/gnu/classpath/tools/keytool/StorePasswdCmd.java,
classpath/tools/gnu/classpath/tools/keytool/ExportCmd.java,
classpath/tools/gnu/classpath/tools/keytool/GenKeyCmd.java,
classpath/tools/gnu/classpath/tools/keytool/Messages.java,
classpath/tools/gnu/classpath/tools/keytool/package.html,
classpath/tools/gnu/classpath/tools/keytool/Command.java,
classpath/tools/gnu/classpath/tools/keytool/IdentityDBCmd.java,
classpath/tools/gnu/classpath/tools/keytool/Main.java,
classpath/tools/gnu/classpath/tools/keytool/DeleteCmd.java,
classpath/tools/gnu/classpath/tools/keytool/CertReqCmd.java,
classpath/tools/gnu/classpath/tools/keytool/SelfCertCmd.java,
classpath/tools/gnu/classpath/tools/keytool/KeyCloneCmd.java,
classpath/tools/gnu/classpath/tools/keytool/KeyPasswdCmd.java,
classpath/tools/gnu/classpath/tools/keytool/ImportCmd.java,
classpath/tools/gnu/classpath/tools/keytool/PrintCertCmd.java,
classpath/tools/gnu/classpath/tools/rmi/registry/package.html,
classpath/tools/gnu/classpath/tools/rmi/RMIC.txt,
classpath/tools/gnu/classpath/tools/rmi/RMIC.java,
classpath/tools/gnu/classpath/tools/appletviewer/ErrorApplet.java,
classpath/tools/gnu/classpath/tools/appletviewer/AppletClassLoader.java,
classpath/tools/gnu/classpath/tools/appletviewer/CommonAppletContext.java,
classpath/tools/gnu/classpath/tools/appletviewer/StandaloneAppletContext.java,
classpath/tools/gnu/classpath/tools/appletviewer/AppletSecurityManager.java,
classpath/tools/gnu/classpath/tools/appletviewer/PluginAppletContext.java,
classpath/tools/gnu/classpath/tools/appletviewer/AppletWarning.java,
classpath/tools/gnu/classpath/tools/appletviewer/StandaloneAppletViewer.java,
classpath/tools/gnu/classpath/tools/appletviewer/AppletTag.java,
classpath/tools/gnu/classpath/tools/appletviewer/ConsoleDialog.java,
classpath/tools/gnu/classpath/tools/appletviewer/Main.java,
classpath/tools/gnu/classpath/tools/appletviewer/StandaloneAppletWindow.java,
classpath/tools/gnu/classpath/tools/appletviewer/PluginAppletViewer.java,
classpath/tools/gnu/classpath/tools/appletviewer/TagParser.java,
classpath/tools/gnu/classpath/tools/appletviewer/PluginAppletWindow.java,
classpath/tools/gnu/classpath/tools/appletviewer/CommonAppletStub.java,
classpath/tools/gnu/classpath/tools/serialver/Messages.java,
classpath/tools/gnu/classpath/tools/serialver/SerialVer.java,
classpath/tools/gnu/classpath/tools/jar/Creator.java,
classpath/tools/gnu/classpath/tools/jar/Entry.java,
classpath/tools/gnu/classpath/tools/jar/Lister.java,
classpath/tools/gnu/classpath/tools/jar/Main.java,
classpath/tools/gnu/classpath/tools/jar/Updater.java,
classpath/tools/gnu/classpath/tools/jar/Messages.java,
classpath/tools/gnu/classpath/tools/jar/Extractor.java,
classpath/tools/gnu/classpath/tools/jar/Action.java,
classpath/tools/gnu/classpath/tools/jar/Indexer.java,
classpath/tools/gnu/classpath/tools/jar/WorkSet.java,
classpath/tools/gnu/classpath/tools/giop/GRMIC.txt,
classpath/tools/gnu/classpath/tools/giop/grmic/GiopRmicCompiler.java,
classpath/tools/gnu/classpath/tools/giop/GRMIC.java,
classpath/tools/Makefile.am, classpath/tools/jarsigner.in,
classpath/tools/keytool.in, classpath/tools/appletviewer.in,
classpath/tools/.cvsignore, classpath/configure.ac,
classpath/javax/swing/JTabbedPane.java,
classpath/javax/swing/AbstractButton.java,
classpath/javax/swing/JViewport.java,
classpath/javax/swing/KeyboardManager.java,
classpath/javax/swing/JMenuItem.java,
classpath/javax/swing/JMenuBar.java,
classpath/javax/swing/MenuSelectionManager.java,
classpath/javax/swing/JOptionPane.java,
classpath/javax/swing/JSpinner.java,
classpath/javax/swing/JCheckBoxMenuItem.java,
classpath/javax/swing/JEditorPane.java,
classpath/javax/swing/JFormattedTextField.java,
classpath/javax/swing/JTree.java,
classpath/javax/swing/CellRendererPane.java,
classpath/javax/swing/JScrollPane.java,
classpath/javax/swing/tree/VariableHeightLayoutCache.java,
classpath/javax/swing/tree/TreeNode.java,
classpath/javax/swing/tree/FixedHeightLayoutCache.java,
classpath/javax/swing/tree/DefaultTreeCellEditor.java,
classpath/javax/swing/tree/TreePath.java,
classpath/javax/swing/tree/RowMapper.java,
classpath/javax/swing/tree/DefaultMutableTreeNode.java,
classpath/javax/swing/tree/DefaultTreeModel.java,
classpath/javax/swing/tree/AbstractLayoutCache.java,
classpath/javax/swing/tree/TreeSelectionModel.java,
classpath/javax/swing/tree/DefaultTreeSelectionModel.java,
classpath/javax/swing/tree/DefaultTreeCellRenderer.java,
classpath/javax/swing/tree/ExpandVetoException.java,
classpath/javax/swing/JList.java,
classpath/javax/swing/table/JTableHeader.java,
classpath/javax/swing/table/AbstractTableModel.java,
classpath/javax/swing/table/DefaultTableModel.java,
classpath/javax/swing/table/TableCellEditor.java,
classpath/javax/swing/table/TableCellRenderer.java,
classpath/javax/swing/ProgressMonitor.java,
classpath/javax/swing/JToolBar.java,
classpath/javax/swing/TransferHandler.java,
classpath/javax/swing/DefaultCellEditor.java,
classpath/javax/swing/DefaultButtonModel.java,
classpath/javax/swing/JLayeredPane.java,
classpath/javax/swing/text/DefaultEditorKit.java,
classpath/javax/swing/text/DefaultCaret.java,
classpath/javax/swing/text/FieldView.java,
classpath/javax/swing/text/JTextComponent.java,
classpath/javax/swing/text/TextAction.java,
classpath/javax/swing/text/StyleContext.java,
classpath/javax/swing/text/html/HTMLDocument.java,
classpath/javax/swing/text/html/MinimalHTMLWriter.java,
classpath/javax/swing/text/html/ImageView.java,
classpath/javax/swing/text/html/HTMLEditorKit.java,
classpath/javax/swing/text/AbstractWriter.java,
classpath/javax/swing/text/GapContent.java,
classpath/javax/swing/text/Utilities.java,
classpath/javax/swing/text/PlainView.java,
classpath/javax/swing/UIManager.java,
classpath/javax/swing/JSplitPane.java,
classpath/javax/swing/JComponent.java,
classpath/javax/swing/SwingUtilities.java,
classpath/javax/swing/border/AbstractBorder.java,
classpath/javax/swing/border/CompoundBorder.java,
classpath/javax/swing/border/TitledBorder.java,
classpath/javax/swing/border/MatteBorder.java,
classpath/javax/swing/border/BevelBorder.java,
classpath/javax/swing/RepaintManager.java,
classpath/javax/swing/JTable.java,
classpath/javax/swing/UIDefaults.java,
classpath/javax/swing/DefaultDesktopManager.java,
classpath/javax/swing/JMenu.java,
classpath/javax/swing/JLabel.java,
classpath/javax/swing/JSlider.java,
classpath/javax/swing/plaf/basic/BasicToolBarUI.java,
classpath/javax/swing/plaf/basic/BasicButtonUI.java,
classpath/javax/swing/plaf/basic/BasicOptionPaneUI.java,
classpath/javax/swing/plaf/basic/BasicTextAreaUI.java,
classpath/javax/swing/plaf/basic/BasicToggleButtonUI.java,
classpath/javax/swing/plaf/basic/BasicSpinnerUI.java,
classpath/javax/swing/plaf/basic/BasicSliderUI.java,
classpath/javax/swing/plaf/basic/BasicTabbedPaneUI.java,
classpath/javax/swing/plaf/basic/BasicComboPopup.java,
classpath/javax/swing/plaf/basic/BasicCheckBoxUI.java,
classpath/javax/swing/plaf/basic/BasicInternalFrameUI.java,
classpath/javax/swing/plaf/basic/BasicProgressBarUI.java,
classpath/javax/swing/plaf/basic/BasicRadioButtonUI.java,
classpath/javax/swing/plaf/basic/BasicPanelUI.java,
classpath/javax/swing/plaf/basic/BasicSplitPaneUI.java,
classpath/javax/swing/plaf/basic/BasicTreeUI.java,
classpath/javax/swing/plaf/basic/BasicTableHeaderUI.java,
classpath/javax/swing/plaf/basic/BasicFileChooserUI.java,
classpath/javax/swing/plaf/basic/BasicScrollPaneUI.java,
classpath/javax/swing/plaf/basic/BasicComboBoxUI.java,
classpath/javax/swing/plaf/basic/BasicListUI.java,
classpath/javax/swing/plaf/basic/BasicIconFactory.java,
classpath/javax/swing/plaf/basic/BasicTextUI.java,
classpath/javax/swing/plaf/basic/BasicLookAndFeel.java,
classpath/javax/swing/plaf/basic/BasicDirectoryModel.java,
classpath/javax/swing/plaf/basic/BasicRootPaneUI.java,
classpath/javax/swing/plaf/basic/BasicTableUI.java,
classpath/javax/swing/plaf/basic/SharedUIDefaults.java,
classpath/javax/swing/plaf/multi/MultiComboBoxUI.java,
classpath/javax/swing/plaf/multi/MultiListUI.java,
classpath/javax/swing/plaf/multi/MultiSplitPaneUI.java,
classpath/javax/swing/plaf/multi/MultiFileChooserUI.java,
classpath/javax/swing/plaf/multi/MultiOptionPaneUI.java,
classpath/javax/swing/plaf/multi/MultiTabbedPaneUI.java,
classpath/javax/swing/plaf/multi/MultiLookAndFeel.java,
classpath/javax/swing/plaf/metal/MetalSliderUI.java,
classpath/javax/swing/plaf/metal/MetalIconFactory.java,
classpath/javax/swing/plaf/metal/MetalComboBoxIcon.java,
classpath/javax/swing/plaf/metal/MetalTabbedPaneUI.java,
classpath/javax/swing/plaf/metal/MetalLookAndFeel.java,
classpath/javax/swing/plaf/metal/MetalCheckBoxUI.java,
classpath/javax/swing/plaf/metal/MetalSeparatorUI.java,
classpath/javax/swing/plaf/metal/MetalBorders.java,
classpath/javax/swing/plaf/metal/MetalSplitPaneDivider.java,
classpath/javax/swing/plaf/metal/MetalScrollBarUI.java,
classpath/javax/swing/plaf/metal/MetalRootPaneUI.java,
classpath/javax/swing/plaf/metal/MetalInternalFrameUI.java,
classpath/javax/swing/plaf/metal/MetalRadioButtonUI.java,
classpath/javax/swing/plaf/metal/MetalToolTipUI.java,
classpath/javax/swing/plaf/metal/MetalInternalFrameTitlePane.java,
classpath/javax/swing/plaf/metal/MetalFileChooserUI.java,
classpath/javax/swing/plaf/metal/MetalUtils.java,
classpath/javax/swing/plaf/metal/MetalComboBoxButton.java,
classpath/javax/swing/plaf/metal/MetalPopupMenuSeparatorUI.java,
classpath/javax/swing/plaf/metal/MetalButtonUI.java,
classpath/javax/swing/JPopupMenu.java,
classpath/javax/swing/JProgressBar.java,
classpath/javax/swing/WindowConstants.java,
classpath/javax/swing/JFrame.java,
classpath/javax/swing/JFileChooser.java,
classpath/javax/swing/JComboBox.java,
classpath/javax/swing/event/EventListenerList.java,
classpath/javax/swing/ListSelectionModel.java,
classpath/javax/swing/JScrollBar.java,
classpath/java/text/SimpleDateFormat.java,
classpath/java/text/NumberFormat.java,
classpath/java/text/class-dependencies.conf,
classpath/java/awt/image/ColorModel.java,
classpath/java/awt/image/BufferedImage.java,
classpath/java/awt/Window.java,
classpath/java/awt/ContainerOrderFocusTraversalPolicy.java,
classpath/java/awt/LightweightDispatcher.java,
classpath/java/awt/EventDispatchThread.java,
classpath/java/awt/BasicStroke.java,
classpath/java/awt/ColorPaintContext.java,
classpath/java/awt/Container.java,
classpath/java/awt/TexturePaint.java,
classpath/java/awt/Component.java, classpath/java/awt/Font.java,
classpath/java/awt/GraphicsConfiguration.java,
classpath/java/awt/DefaultKeyboardFocusManager.java,
classpath/java/awt/print/PrinterJob.java,
classpath/java/awt/im/InputContext.java,
classpath/java/awt/dnd/DragGestureRecognizer.java,
classpath/java/awt/Toolkit.java,
classpath/java/awt/font/GraphicAttribute.java,
classpath/java/awt/font/ImageGraphicAttribute.java,
classpath/java/awt/font/GlyphVector.java,
classpath/java/awt/font/GlyphMetrics.java,
classpath/java/awt/font/ShapeGraphicAttribute.java,
classpath/java/awt/Graphics2D.java,
classpath/include/gnu_java_awt_peer_gtk_GdkGraphicsEnvironment.h,
classpath/include/gnu_java_awt_peer_gtk_ComponentGraphics.h,
classpath/include/gnu_java_awt_peer_gtk_CairoGraphics2D.h,
classpath/include/gnu_java_awt_peer_gtk_FreetypeGlyphVector.h,
classpath/include/gnu_java_awt_peer_gtk_GtkCanvasPeer.h,
classpath/include/config.h.in,
classpath/include/gnu_java_awt_peer_gtk_GdkTextLayout.h,
classpath/include/gnu_java_awt_peer_gtk_GtkComponentPeer.h,
classpath/include/gnu_java_awt_peer_gtk_GdkFontPeer.h,
classpath/include/gnu_java_awt_peer_gtk_ComponentGraphicsCopy.h,
classpath/include/gnu_java_awt_peer_gtk_GtkVolatileImage.h,
classpath/include/gnu_java_awt_peer_gtk_GtkImage.h,
classpath/include/gnu_java_awt_peer_gtk_CairoSurface.h,
classpath/include/gnu_java_awt_peer_gtk_GdkScreenGraphicsDevice.h:
Merge from GNU Classpath HEAD.
From-SVN: r114510
2006-06-09 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true to indicate that the editing cell can be selected. If the
|
|
|
|
* check box is not editable, expands it. If it is editable, brings
|
|
|
|
* focus to the editor field.
|
|
|
|
*
|
|
|
|
* @param event unused in default method
|
|
|
|
*
|
|
|
|
* @return true always
|
|
|
|
*/
|
|
|
|
public boolean shouldSelectCell(EventObject event)
|
|
|
|
{
|
|
|
|
JComboBox c = (JComboBox) editorComponent;
|
|
|
|
if (!c.isEditable)
|
|
|
|
c.showPopup();
|
|
|
|
return true;
|
|
|
|
}
|
2006-03-10 21:46:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides getter and setter methods to work with the check box.
|
|
|
|
*
|
|
|
|
* @author Audrius Meskauskas (audriusa@Bioinformatics.org)
|
|
|
|
*/
|
|
|
|
private class JCheckBoxDelegate extends EditorDelegate
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Use the serial version UID for interoperability.
|
|
|
|
*/
|
|
|
|
private static final long serialVersionUID = 1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the value for the editor component.
|
|
|
|
*
|
|
|
|
* @param value the value to set (must be Boolean).
|
|
|
|
*/
|
|
|
|
public void setValue(Object value)
|
|
|
|
{
|
|
|
|
JCheckBox c = (JCheckBox) editorComponent;
|
|
|
|
|
|
|
|
if (value == null)
|
|
|
|
c.setSelected(false);
|
|
|
|
else
|
|
|
|
c.setSelected( ((Boolean) value).booleanValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the value for the editor component.
|
|
|
|
*
|
|
|
|
* @return value the value of the component (must be CharSequence)
|
|
|
|
*/
|
|
|
|
public Object getCellEditorValue()
|
|
|
|
{
|
|
|
|
JCheckBox c = (JCheckBox) editorComponent;
|
|
|
|
value = c.isSelected() ? Boolean.TRUE : Boolean.FALSE;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Swing JComponent, performing the editing session.
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
protected JComponent editorComponent;
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* The editor delegate, responsible for listening the {@link #editorComponent}
|
|
|
|
* events and getting/setting its value.
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
protected EditorDelegate delegate;
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* The number of the mouse clicks, required to start the editing session.
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
protected int clickCountToStart;
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Create the DefaultCellEditor that uses the text field as its editor
|
|
|
|
* component (appropriate for the text content)
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param textfield the text field as will be used as the editor component
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public DefaultCellEditor(JTextField textfield)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
editorComponent = textfield;
|
2006-03-10 21:46:48 +00:00
|
|
|
clickCountToStart = 2;
|
|
|
|
delegate = new JTextFieldDelegate();
|
|
|
|
textfield.addActionListener(delegate);
|
2005-07-16 00:30:23 +00:00
|
|
|
} // DefaultCellEditor()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Constructor DefaultCellEditor that uses the checkbox (appropriate
|
|
|
|
* for boolean values)
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param checkbox the checkbox that will be used with this editor.
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public DefaultCellEditor(JCheckBox checkbox)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
editorComponent = checkbox;
|
|
|
|
clickCountToStart = 1;
|
2006-03-10 21:46:48 +00:00
|
|
|
delegate = new JCheckBoxDelegate();
|
|
|
|
checkbox.addActionListener(delegate);
|
2005-07-16 00:30:23 +00:00
|
|
|
} // DefaultCellEditor()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Constructor DefaultCellEditor that uses the combo box.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param combobox the combo box that will be used with this editor.
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public DefaultCellEditor(JComboBox combobox)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
editorComponent = combobox;
|
|
|
|
clickCountToStart = 1;
|
2006-03-10 21:46:48 +00:00
|
|
|
delegate = new JComboBoxDelegate();
|
|
|
|
combobox.addActionListener(delegate);
|
2005-07-16 00:30:23 +00:00
|
|
|
} // DefaultCellEditor()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Get the component that performs the editing sessions. It is the same
|
|
|
|
* component that was passed in constructor.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @return the component, performing the editing sessions.
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public Component getComponent()
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
return editorComponent;
|
2005-07-16 00:30:23 +00:00
|
|
|
} // getComponent()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Get the number of mouse clicks, required to start the editing session.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @return int the number of mouse clicks, required to start the session
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public int getClickCountToStart()
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
return clickCountToStart;
|
2005-07-16 00:30:23 +00:00
|
|
|
} // getClickCountToStart()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Set the number of mouse clicks, required to start the editing session.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param count the number of clicks, required to start the session
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public void setClickCountToStart(int count)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
clickCountToStart = count;
|
2005-07-16 00:30:23 +00:00
|
|
|
} // setClickCountToStart()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Get the value, currently being displayed by the editor component. The
|
|
|
|
* call is forwarded to the {@link #delegate}.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @return Object the value (class depends on the editor component)
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public Object getCellEditorValue()
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
return delegate.getCellEditorValue();
|
2005-07-16 00:30:23 +00:00
|
|
|
} // getCellEditorValue()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Forwards call to the {@link #delegate}.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param event forwarded to the delegate.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @return boolean returned by delegate
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public boolean isCellEditable(EventObject event)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
return delegate.isCellEditable(event);
|
2005-07-16 00:30:23 +00:00
|
|
|
} // isCellEditable()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Forwards call to the {@link #delegate}.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param event forwarded to the delegate.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @return boolean returned by delegate
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public boolean shouldSelectCell(EventObject event)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
return delegate.shouldSelectCell(event);
|
2005-07-16 00:30:23 +00:00
|
|
|
} // shouldSelectCell()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Forwards call to the {@link #delegate}.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @return boolean returned by delegate
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public boolean stopCellEditing()
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
return delegate.stopCellEditing();
|
2005-07-16 00:30:23 +00:00
|
|
|
} // stopCellEditing()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Forwards call to the {@link #delegate}.
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public void cancelCellEditing()
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
delegate.cancelCellEditing();
|
2005-07-16 00:30:23 +00:00
|
|
|
} // cancelCellEditing()
|
|
|
|
|
|
|
|
/**
|
2005-09-23 21:31:04 +00:00
|
|
|
* Sets an initial value for the editor.
|
|
|
|
* This will cause the editor to stopEditing and lose any partially
|
|
|
|
* edited value if the editor is editing when this method is called.
|
|
|
|
* Returns the component that should be added to the client's Component
|
|
|
|
* hierarchy. Once installed in the client's hierarchy this component will
|
|
|
|
* then be able to draw and receive user input.
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2005-09-23 21:31:04 +00:00
|
|
|
* @param tree - the JTree that is asking the editor to edit; this
|
|
|
|
* parameter can be null
|
|
|
|
* @param value - the value of the cell to be edited
|
|
|
|
* @param isSelected - true is the cell is to be renderer with selection
|
|
|
|
* highlighting
|
|
|
|
* @param expanded - true if the node is expanded
|
|
|
|
* @param leaf - true if the node is a leaf node
|
|
|
|
* @param row - the row index of the node being edited
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @return Component the component for editing
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
|
|
|
public Component getTreeCellEditorComponent(JTree tree, Object value,
|
|
|
|
boolean isSelected,
|
|
|
|
boolean expanded, boolean leaf,
|
|
|
|
int row)
|
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
delegate.setValue(value);
|
2005-09-23 21:31:04 +00:00
|
|
|
return editorComponent;
|
2005-07-16 00:30:23 +00:00
|
|
|
} // getTreeCellEditorComponent()
|
|
|
|
|
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Get the cell editor component that will perform the editing session. If
|
|
|
|
* returned once, the same component is also returned on the repetetive calls
|
|
|
|
* again (reused).
|
2005-07-16 00:30:23 +00:00
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param table the table where the editing is performed
|
|
|
|
* @param value the current value of the table. It is set as the initial
|
|
|
|
* component value.
|
|
|
|
* @param isSelected if true, the cell is currently selected
|
|
|
|
* @param row the row of the cell being edited
|
|
|
|
* @param column the column of the cell being edited
|
|
|
|
*
|
|
|
|
* @return Component the component that will perform the editing session
|
2005-07-16 00:30:23 +00:00
|
|
|
*/
|
2005-09-23 21:31:04 +00:00
|
|
|
public Component getTableCellEditorComponent(JTable table, Object value,
|
2005-07-16 00:30:23 +00:00
|
|
|
boolean isSelected, int row,
|
|
|
|
int column)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
// NOTE: as specified by Sun, we don't call new() everytime, we return
|
|
|
|
// editorComponent on each call to getTableCellEditorComponent or
|
2006-03-10 21:46:48 +00:00
|
|
|
// getTreeCellEditorComponent.
|
|
|
|
delegate.setValue(value);
|
2005-09-23 21:31:04 +00:00
|
|
|
return editorComponent;
|
2005-07-16 00:30:23 +00:00
|
|
|
} // getTableCellEditorComponent()
|
2005-09-23 21:31:04 +00:00
|
|
|
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|