KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > projectmanagement > presentation > Index


1 /*
2  * projectManagement
3  *
4  * Enhydra super-servlet presentation object
5  *
6  */

7
8 package projectmanagement.presentation;
9
10 import org.w3c.dom.*;
11 import org.w3c.dom.html.*;
12
13 // Enhydra SuperServlet imports
14
import com.lutris.appserver.server.httpPresentation.HttpPresentation;
15 import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
16 import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
17
18 // Standard imports
19
import java.io.IOException JavaDoc;
20
21 /**
22 * Generates the main application frame that consists of two frames,
23 * the left one-control frame, and the right one controled frame.
24 * the login frame.
25 */

26 public class Index implements HttpPresentation {
27    public void run(HttpPresentationComms comms) throws HttpPresentationException, IOException JavaDoc {
28       comms.response.writeDOM(new indexHTML());
29    }
30
31 }
32
Popular Tags