SMACS

smacs.xngr
Interface XDocumentListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
DocumentsPanel, Editor, Viewer

public interface XDocumentListener
extends EventListener

This interface needs to be implemented to be able to listen to specific Document events.

Author:
Edwin Dankert

Method Summary
 void documentDeleted(XDocumentEvent event)
          This method is called when the document has been deleted from the location on disk.
 void documentUpdated(XDocumentEvent event)
          This method is called when the document has been updated on disk, either by a save on the document, or externally.
 

Method Detail

documentUpdated

public void documentUpdated(XDocumentEvent event)
This method is called when the document has been updated on disk, either by a save on the document, or externally.

Parameters:
event - the document event fired.

documentDeleted

public void documentDeleted(XDocumentEvent event)
This method is called when the document has been deleted from the location on disk.

Parameters:
event - the document event fired.

SMACS