net.aerith.misao.gui.table
Class CommonCellEditorListener

java.lang.Object
  |
  +--net.aerith.misao.gui.table.CommonCellEditorListener
Direct Known Subclasses:
ImageConversionTable.InputImageFormatEditorListener, ImageConversionTable.OutputImageEditorListener, ImageConversionTable.OutputImageFormatEditorListener

public class CommonCellEditorListener
extends java.lang.Object
implements javax.swing.event.CellEditorListener

The CommonCellEditorListener represents a cell editor listener. It provides a framework to access the editing object.


Field Summary
protected  java.lang.Object object
          The object to edit.
 
Constructor Summary
CommonCellEditorListener()
           
 
Method Summary
 void editingCanceled(javax.swing.event.ChangeEvent e)
          This tells the listeners the editor has canceled editing.
 void editingStopped(javax.swing.event.ChangeEvent e)
          This tells the listeners the editor has ended editing.
 void setEditingObject(java.lang.Object object)
          Sets the editing object.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

object

protected java.lang.Object object
The object to edit.
Constructor Detail

CommonCellEditorListener

public CommonCellEditorListener()
Method Detail

setEditingObject

public void setEditingObject(java.lang.Object object)
Sets the editing object.
Parameters:
object - the editing object.

editingCanceled

public void editingCanceled(javax.swing.event.ChangeEvent e)
This tells the listeners the editor has canceled editing.
Specified by:
editingCanceled in interface javax.swing.event.CellEditorListener
Parameters:
e - the event.

editingStopped

public void editingStopped(javax.swing.event.ChangeEvent e)
This tells the listeners the editor has ended editing.
Specified by:
editingStopped in interface javax.swing.event.CellEditorListener
Parameters:
e - the event.