net.refractions.udig.tools.edit.support
Class EditBlackboardAdapter

java.lang.Object
  extended by net.refractions.udig.tools.edit.support.EditBlackboardAdapter
All Implemented Interfaces:
EditBlackboardListener

public class EditBlackboardAdapter
extends java.lang.Object
implements EditBlackboardListener

The typical adapter that has empty methods for all events that can occur.

Since:
1.1.0
Author:
jones

Constructor Summary
EditBlackboardAdapter()
           
 
Method Summary
 void batchChange(java.util.List<EditBlackboardEvent> e)
          Indicates that many changes have taken place on the EditBlackboard and all the changes have been batched into a list (in order of occurance) of events.
 void changed(EditBlackboardEvent e)
          Indicates that something on the EditBlackboard has changed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EditBlackboardAdapter

public EditBlackboardAdapter()
Method Detail

changed

public void changed(EditBlackboardEvent e)
Description copied from interface: EditBlackboardListener
Indicates that something on the EditBlackboard has changed. Event object has the details

Specified by:
changed in interface EditBlackboardListener
Parameters:
e - details of the event.

batchChange

public void batchChange(java.util.List<EditBlackboardEvent> e)
Description copied from interface: EditBlackboardListener
Indicates that many changes have taken place on the EditBlackboard and all the changes have been batched into a list (in order of occurance) of events.

Specified by:
batchChange in interface EditBlackboardListener
Parameters:
e - events that have taken place. Events are ordered in order of occurance. The first event in the list was the first event to fire.