Example usage for javax.swing.table TableCellEditor interface-usage

List of usage examples for javax.swing.table TableCellEditor interface-usage

Introduction

In this page you can find the example usage for javax.swing.table TableCellEditor interface-usage.

Usage

From source file org.kuali.test.ui.components.sqlquerypanel.WhereValueCellEditor.java

public class WhereValueCellEditor extends JPanel implements TableCellEditor, ActionListener {
    private static final Logger LOG = Logger.getLogger(WhereValueCellEditor.class);

    private DefaultCellEditor cellEditor;
    private SearchButton lookup;
    private SearchButton executionParameter;

From source file es.emergya.ui.plugins.JButtonCellEditor.java

/**
 * Cell editor que parece un boton y hace lo mismo que haria un boton.
 * 
 * @author fario
 * @author marias
 * 

From source file cz.lidinsky.editor.TableCellEditor.java

/**
 *  Choose and return appropriate edit component, for property table.
 *  The decision is based mainly on the datatype of the edited value.
 *  But may depend even on the class to which the property belongs to.
 */
public class TableCellEditor extends AbstractCellEditor implements javax.swing.table.TableCellEditor,

From source file components.ColorEditor.java

public class ColorEditor extends AbstractCellEditor implements TableCellEditor, ActionListener {
    Color currentColor;
    JButton button;
    JColorChooser colorChooser;
    JDialog dialog;
    protected static final String EDIT = "edit";

From source file org.pentaho.reporting.libraries.designtime.swing.date.TimeCellEditor.java

public class TimeCellEditor extends JPanel implements TableCellEditor {
    private class TextComponentEditHandler implements Runnable, DocumentListener, ActionListener {
        private JTextComponent textComponent;
        private Color color;
        private boolean inProgress;

From source file org.apache.cayenne.modeler.util.PathChooserComboBoxCellEditor.java

/**
 * This class used as cell editor, when you need to
 * choose path in comboBox and use autocompletion.
 */
@SuppressWarnings("WeakerAccess")
public abstract class PathChooserComboBoxCellEditor extends AbstractCellEditor

From source file org.pentaho.reporting.libraries.designtime.swing.date.DateCellEditor.java

public class DateCellEditor extends JPanel implements TableCellEditor {
    private class PickDateListener extends AbstractAction {

        /**
         * Defines an <code>Action</code> object with a default description string and default icon.
         */

From source file edu.harvard.mcz.imagecapture.ui.ButtonEditor.java

/** ButtonEditor A clickable button in a table cell that brings up a details view for the row 
 * containing the button.  Works with ButtonRenderer and a TableModel that implements isCellEditable().
 * <BR>
 * Note: This implementation is specific to a Specimen identified by its id.
 * <BR>
 * Example Usage (assuming that only the ID column is of type Long):

From source file org.nuclos.client.ui.collect.component.CollectableComponentTableCellEditor.java

/**
 * <code>TableCellEditor</code> for a <code>CollectableComponent</code>. This makes it possible to edit
 * any <code>CollectableField</code> in a <code>JTable</code>.
 * <br>
 * <br>Created by Novabit Informationssysteme GmbH
 * <br>Please visit <a href="http://www.novabit.de">www.novabit.de</a>

From source file MainClass.java

class VolumeEditor extends JSlider implements TableCellEditor {

    public OkCancel helper = new OkCancel();

    protected transient Vector listeners;