KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > projectmanagement > presentation > Splash


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 blank HTML page.
23 */

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