01: /**
02: * Title: OpenUSS - Open Source University Support System
03: * Description: Enhydra 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: * The base header object for Enhydra. This
12: *
13: * @author B. Lofi Dewanto
14: * @version 1.0
15: */
16: public interface BaseHeader {
17: /**
18: * This method has to be implemented.
19: */
20: public void showHeader() throws BasePOException;
21: }
|