KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openuss > presentation > enhydra > framework > designer > BasePageDesigner


1 /**
2  * Title: OpenUSS - Open Source University Support System
3  * Description: Base Page Translator for Presentation
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.designer;
10
11 import java.util.*;
12
13 import org.enhydra.xml.xmlc.html.*;
14
15
16 /**
17  * Base Page Designer for the presentation objects in Enhydra.
18  *
19  * @author B. Lofi Dewanto
20  * @version 1.0
21  */

22 public interface BasePageDesigner {
23     /**
24      * Get the design file.
25      * @return the design file with its full package name.
26      */

27     public String JavaDoc getDesignFileName(Object JavaDoc page);
28
29     /**
30      * Design the page.
31      */

32     public void designPage();
33 }
Popular Tags