edu.jhu.ece.iacl.jist.pipeline.graph
Class PipeEdgeRealEditor

java.lang.Object
  extended by javax.swing.AbstractCellEditor
      extended by edu.jhu.ece.iacl.jist.pipeline.graph.PipeEdgeRealEditor
All Implemented Interfaces:
java.io.Serializable, javax.swing.CellEditor, javax.swing.table.TableCellEditor, javax.swing.tree.TreeCellEditor

public class PipeEdgeRealEditor
extends javax.swing.AbstractCellEditor
implements javax.swing.table.TableCellEditor, javax.swing.tree.TreeCellEditor

The Class PipeEdgeRealEditor.

See Also:
Serialized Form

Nested Class Summary
protected  class PipeEdgeRealEditor.EditorDelegate
          The protected EditorDelegate class.
 
Field Summary
protected  int clickCountToStart
          An integer specifying the number of clicks needed to start editing.
protected  PipeEdgeRealEditor.EditorDelegate delegate
          The delegate class which handles all methods sent from the CellEditor.
protected  javax.swing.JComponent editorComponent
          The Swing component being edited.
 
Fields inherited from class javax.swing.AbstractCellEditor
changeEvent, listenerList
 
Constructor Summary
PipeEdgeRealEditor(javax.swing.JSpinner spinnerField)
          Constructs a DefaultCellEditor that uses a text field.
 
Method Summary
 void cancelCellEditing()
          Forwards the message from the CellEditor to the delegate.
 java.lang.Object getCellEditorValue()
          Forwards the message from the CellEditor to the delegate.
 int getClickCountToStart()
          Returns the number of clicks needed to start editing.
 java.awt.Component getComponent()
          Returns a reference to the editor component.
 java.awt.Component getGraphCellEditorComponent(JGraph graph, java.lang.Object value, boolean isSelected)
           
 java.awt.Component getTableCellEditorComponent(javax.swing.JTable table, java.lang.Object value, boolean isSelected, int row, int column)
          Implements the TableCellEditor interface.
 java.awt.Component getTreeCellEditorComponent(javax.swing.JTree tree, java.lang.Object value, boolean isSelected, boolean expanded, boolean leaf, int row)
          Implements the TreeCellEditor interface.
 boolean isCellEditable(java.util.EventObject anEvent)
          Forwards the message from the CellEditor to the delegate.
 void setClickCountToStart(int count)
          Specifies the number of clicks needed to start editing.
 boolean shouldSelectCell(java.util.EventObject anEvent)
          Forwards the message from the CellEditor to the delegate.
 boolean stopCellEditing()
          Forwards the message from the CellEditor to the delegate.
 
Methods inherited from class javax.swing.AbstractCellEditor
addCellEditorListener, fireEditingCanceled, fireEditingStopped, getCellEditorListeners, removeCellEditorListener
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface javax.swing.CellEditor
addCellEditorListener, removeCellEditorListener
 

Field Detail

editorComponent

protected javax.swing.JComponent editorComponent
The Swing component being edited.


delegate

protected PipeEdgeRealEditor.EditorDelegate delegate
The delegate class which handles all methods sent from the CellEditor.


clickCountToStart

protected int clickCountToStart
An integer specifying the number of clicks needed to start editing. Even if clickCountToStart is defined as zero, it will not initiate until a click occurs.

Constructor Detail

PipeEdgeRealEditor

public PipeEdgeRealEditor(javax.swing.JSpinner spinnerField)
Constructs a DefaultCellEditor that uses a text field.

Parameters:
spinnerField - the spinner field
Method Detail

cancelCellEditing

public void cancelCellEditing()
Forwards the message from the CellEditor to the delegate.

Specified by:
cancelCellEditing in interface javax.swing.CellEditor
Overrides:
cancelCellEditing in class javax.swing.AbstractCellEditor
See Also:
PipeEdgeRealEditor.EditorDelegate.cancelCellEditing()

getCellEditorValue

public java.lang.Object getCellEditorValue()
Forwards the message from the CellEditor to the delegate.

Specified by:
getCellEditorValue in interface javax.swing.CellEditor
Returns:
the cell editor value
See Also:
PipeEdgeRealEditor.EditorDelegate.getCellEditorValue()

getClickCountToStart

public int getClickCountToStart()
Returns the number of clicks needed to start editing.

Returns:
the number of clicks needed to start editing

getComponent

public java.awt.Component getComponent()
Returns a reference to the editor component.

Returns:
the editor Component

getGraphCellEditorComponent

public java.awt.Component getGraphCellEditorComponent(JGraph graph,
                                                      java.lang.Object value,
                                                      boolean isSelected)

getTableCellEditorComponent

public java.awt.Component getTableCellEditorComponent(javax.swing.JTable table,
                                                      java.lang.Object value,
                                                      boolean isSelected,
                                                      int row,
                                                      int column)
Implements the TableCellEditor interface.

Specified by:
getTableCellEditorComponent in interface javax.swing.table.TableCellEditor
Parameters:
table - the table
value - the value
isSelected - the is selected
row - the row
column - the column
Returns:
the table cell editor component

getTreeCellEditorComponent

public java.awt.Component getTreeCellEditorComponent(javax.swing.JTree tree,
                                                     java.lang.Object value,
                                                     boolean isSelected,
                                                     boolean expanded,
                                                     boolean leaf,
                                                     int row)
Implements the TreeCellEditor interface.

Specified by:
getTreeCellEditorComponent in interface javax.swing.tree.TreeCellEditor
Parameters:
tree - the tree
value - the value
isSelected - the is selected
expanded - the expanded
leaf - the leaf
row - the row
Returns:
the tree cell editor component

isCellEditable

public boolean isCellEditable(java.util.EventObject anEvent)
Forwards the message from the CellEditor to the delegate.

Specified by:
isCellEditable in interface javax.swing.CellEditor
Overrides:
isCellEditable in class javax.swing.AbstractCellEditor
Parameters:
anEvent - the an event
Returns:
true, if checks if is cell editable
See Also:
PipeEdgeRealEditor.EditorDelegate.isCellEditable(EventObject)

setClickCountToStart

public void setClickCountToStart(int count)
Specifies the number of clicks needed to start editing.

Parameters:
count - an int specifying the number of clicks needed to start editing
See Also:
getClickCountToStart()

shouldSelectCell

public boolean shouldSelectCell(java.util.EventObject anEvent)
Forwards the message from the CellEditor to the delegate.

Specified by:
shouldSelectCell in interface javax.swing.CellEditor
Overrides:
shouldSelectCell in class javax.swing.AbstractCellEditor
Parameters:
anEvent - the an event
Returns:
true, if should select cell
See Also:
PipeEdgeRealEditor.EditorDelegate.shouldSelectCell(EventObject)

stopCellEditing

public boolean stopCellEditing()
Forwards the message from the CellEditor to the delegate.

Specified by:
stopCellEditing in interface javax.swing.CellEditor
Overrides:
stopCellEditing in class javax.swing.AbstractCellEditor
Returns:
true, if stop cell editing
See Also:
PipeEdgeRealEditor.EditorDelegate.stopCellEditing()