KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > lutris > appserver > debugger > presentation > Main


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

7
8 package com.lutris.appserver.debugger.presentation;
9
10 // Enhydra SuperServlet imports
11
import com.lutris.appserver.server.httpPresentation.HttpPresentation;
12 import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
13 import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
14
15
16
17
18 // Standard imports
19
import java.io.IOException JavaDoc;
20
21
22
23 public class Main implements HttpPresentation {
24
25
26     public void run(HttpPresentationComms comms)
27         throws HttpPresentationException, IOException JavaDoc {
28  
29    MainHTML page = (MainHTML)comms.xmlcFactory.create(MainHTML.class);
30    comms.response.writeHTML(page);
31             
32
33 }
34 }
Popular Tags