SMACS

smacs.xngr.browser.document
Interface CategoryListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
CategoriesPanel

public interface CategoryListener
extends EventListener

Allows for listening to DocumentCategory events.

Author:
Edwin Dankert

Method Summary
 void categoryAdded(DocumentCategory category)
          Called when a category has been added.
 void categoryChanged(DocumentCategory category)
          Called when a category has been changed.
 void categoryRemoved(DocumentCategory category)
          Called when a category has been removed.
 

Method Detail

categoryAdded

public void categoryAdded(DocumentCategory category)
Called when a category has been added.

Parameters:
category - the added category.

categoryRemoved

public void categoryRemoved(DocumentCategory category)
Called when a category has been removed.

Parameters:
category - the removed category.

categoryChanged

public void categoryChanged(DocumentCategory category)
Called when a category has been changed.

Parameters:
category - the changed category.

SMACS