gishur.core.event
Interface ModifyListener

All Superinterfaces:
java.util.EventListener

public interface ModifyListener
extends java.util.EventListener

Listener class for events of the Type ModifyEvent

Version:
1.0
Author:
Thomas Wolf

Method Summary
 void actionPerformed(ModifyEvent e)
          Invoked when another modification related action occured.
 void cancelModification(ModifyEvent e)
          Invoked when a modification process was canceled.
 void doModification(ModifyEvent e)
          Invoked while a modification of the target takes place.
 void finishModification(ModifyEvent e)
          Invoked when a modification process finishes regular.
 void startModification(ModifyEvent e)
          Invoked when a modification of the target object starts.
 

Method Detail

startModification

public void startModification(ModifyEvent e)
Invoked when a modification of the target object starts.
Parameters:
e - ModifyEvent event to process

doModification

public void doModification(ModifyEvent e)
Invoked while a modification of the target takes place.
Parameters:
e - ModifyEvent event to process

finishModification

public void finishModification(ModifyEvent e)
Invoked when a modification process finishes regular.
Parameters:
e - ModifyEvent event to process

cancelModification

public void cancelModification(ModifyEvent e)
Invoked when a modification process was canceled.
Parameters:
e - ModifyEvent event to process

actionPerformed

public void actionPerformed(ModifyEvent e)
Invoked when another modification related action occured.
Parameters:
e - ModifyEvent event to process