com.nwoods.jgo
Interface JGoDocumentListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
JGoUndoManager, JGoView

public interface JGoDocumentListener
extends java.util.EventListener

This interface is implemented by an object that listens for changes to a JGoDocument and to any changes to the JGoObjects contained within that JGoDocument.

See Also:
JGoDocumentEvent, JGoDocument, JGoViewListener

Method Summary
 void documentChanged(JGoDocumentEvent e)
          Whenever a JGoDocument changes this method will be called on all JGoDocumentListener objects that have been registered on the JGoDocument.
 

Method Detail

documentChanged

public void documentChanged(JGoDocumentEvent e)
Whenever a JGoDocument changes this method will be called on all JGoDocumentListener objects that have been registered on the JGoDocument.

Note that this event will be triggered whenever any JGoObject is added or deleted to this JGoDocument or whenever any JGoObject contained within this JGoDocument is modified.

Parameters:
e - is a document event describing the change