01: /**
02: * Title: OpenUSS - Open Source University Support System
03: * Description: Base Page Translator for Presentation
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.designer;
09:
10: import java.util.*;
11:
12: import org.enhydra.xml.xmlc.html.*;
13:
14: /**
15: * Base Page Designer for the presentation objects in Enhydra.
16: *
17: * @author B. Lofi Dewanto
18: * @version 1.0
19: */
20: public interface BasePageDesigner {
21: /**
22: * Get the design file.
23: * @return the design file with its full package name.
24: */
25: public String getDesignFileName(Object page);
26:
27: /**
28: * Design the page.
29: */
30: public void designPage();
31: }
|