01: /**
02: * Title: OpenUSS - Open Source University Support System
03: * Description: TreeNavigator Presentation Object
04: * Copyright: Copyright (c) B. Lofi Dewanto
05: * Company: University of Muenster
06: * @author B. Lofi Dewanto
07: * @version 1.0
08: */package org.openuss.presentation.enhydra.framework;
09:
10: /**
11: * Base class for the tree navigator.
12: *
13: * @author B. Lofi Dewanto
14: * @version 1.0
15: */
16: public interface BaseTreeNavigator {
17: /**
18: * Show method should be used to show the navigator
19: * tree. This method must be implemented with the
20: * reflection API from Java!
21: */
22: public void show() throws BasePOException;
23: }
|