org.jgraph.graph.DefaultRealEditor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ingeniasjgraphmod Show documentation
Show all versions of ingeniasjgraphmod Show documentation
A modified version of some JGraph files
The newest version!
/*
* @(#)DefaultCellEditor.java 1.0 03-JUL-04
*
* Copyright (c) 2001-2004 Gaudenz Alder
*
*/
package org.jgraph.graph;
import java.awt.Component;
import javax.swing.DefaultCellEditor;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JTextField;
import org.jgraph.JGraph;
/**
* The default editor for graph cells.
*
* @version 1.0 1/1/02
* @author Gaudenz Alder
*/
public class DefaultRealEditor extends DefaultCellEditor
implements
GraphCellEditor {
//
// Constructors
//
/**
* Constructs a DefaultCellEditor that uses a text field.
*
* @param textField
* a JTextField object used as the editor
*/
public DefaultRealEditor(final JTextField textField) {
super(textField);
setClickCountToStart(1);
}
/**
* Constructs a DefaultCellEditor object that uses a check box.
*
* @param checkBox
* a JCheckBox object
*/
public DefaultRealEditor(final JCheckBox checkBox) {
super(checkBox);
}
/**
* Constructs a DefaultCellEditor object that uses a combo box.
*
* @param comboBox
* a JComboBox object
*/
public DefaultRealEditor(final JComboBox comboBox) {
super(comboBox);
}
//
// GraphCellEditor Interface
//
public Component getGraphCellEditorComponent(JGraph graph, Object value,
boolean isSelected) {
String stringValue = graph.convertValueToString(value);
delegate.setValue(stringValue);
if (editorComponent instanceof JTextField)
((JTextField) editorComponent).selectAll();
return editorComponent;
}
} // End of class JCellEditor
© 2015 - 2024 Weber Informatics LLC | Privacy Policy