net.aerith.misao.gui.event
Interface CatalogTreeSelectionListener

All Known Implementing Classes:
CatalogSelectionTable, IdentificationReportPane.CatalogSelectionListener, StarDatabaseDesktop.StarSelectionListener

public interface CatalogTreeSelectionListener

The CatalogTreeSelectionListener is a listener interface of node selection in CatalogTree. classified into some groups.


Method Summary
 void selectAll()
          Invoked when the root node is selected.
 void selectCatalog(java.lang.String catalog_name)
          Invoked when the specified catalog is selected.
 void selectCategory(java.lang.String category_name)
          Invoked when the specified catalog category is selected.
 void selectStar(Star star)
          Invoked when the specified star is selected.
 

Method Detail

selectAll

public void selectAll()
Invoked when the root node is selected.

selectCategory

public void selectCategory(java.lang.String category_name)
Invoked when the specified catalog category is selected.
Parameters:
category_name - the category name.

selectCatalog

public void selectCatalog(java.lang.String catalog_name)
Invoked when the specified catalog is selected.
Parameters:
catalog_name - the catalog name.

selectStar

public void selectStar(Star star)
Invoked when the specified star is selected.
Parameters:
star - the star.