KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openuss > presentation > enhydra > framework > BaseTreeNavigator


1 /**
2  * Title: OpenUSS - Open Source University Support System
3  * Description: TreeNavigator Presentation Object
4  * Copyright: Copyright (c) B. Lofi Dewanto
5  * Company: University of Muenster
6  * @author B. Lofi Dewanto
7  * @version 1.0
8  */

9 package org.openuss.presentation.enhydra.framework;
10
11 /**
12  * Base class for the tree navigator.
13  *
14  * @author B. Lofi Dewanto
15  * @version 1.0
16  */

17 public interface BaseTreeNavigator {
18     /**
19      * Show method should be used to show the navigator
20      * tree. This method must be implemented with the
21      * reflection API from Java!
22      */

23     public void show() throws BasePOException;
24 }
Popular Tags