com.jxcell
Class EndEditEvent

java.lang.Object
  extended byjava.util.EventObject
      extended bycom.jxcell.EndEditEvent
All Implemented Interfaces:
java.io.Serializable

public class EndEditEvent
extends java.util.EventObject

This event occurs when an editing operation is completed

See Also:
Serialized Form

Method Summary
 java.lang.String getEditString()
          Retrieves the edit string to be entered in the active cell
 boolean isCanceled()
          Returns whether the end edit event has been canceled boolean indicating whether the EndEdit event has been canceled.
 void setCanceled(boolean flag)
          Specifies whether edit mode is to continue
 void setEditString(java.lang.String editString)
          Specifies the edit string to be entered in the active cell
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

getEditString

public java.lang.String getEditString()
Retrieves the edit string to be entered in the active cell


setEditString

public void setEditString(java.lang.String editString)
Specifies the edit string to be entered in the active cell

Parameters:
editString - - the string to be entered in the active cell

isCanceled

public boolean isCanceled()
Returns whether the end edit event has been canceled boolean indicating whether the EndEdit event has been canceled. False indicates that edit mode should terminate. True indicates that edit mode should continue; this is often used for data validation when you do not want the user to exit edit mode until data is correct.


setCanceled

public void setCanceled(boolean flag)
Specifies whether edit mode is to continue

Parameters:
flag - - indicating whether the EndEdit event is to be canceled. False indicates that edit mode should terminate. True indicates that edit mode should continue; this is often used for data validation when you do not want the user to exit edit mode until data is correct.