KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fops > presentation > IndexPO


1 package fops.presentation;
2
3 import com.lutris.appserver.server.httpPresentation.HttpPresentation;
4 import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
5 import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
6 import org.w3c.dom.html.*;
7 import org.w3c.dom.Node JavaDoc;
8 import java.io.IOException JavaDoc;
9 import fops.presentation.*;
10 import java.text.DateFormat JavaDoc;
11 import org.w3c.dom.Node JavaDoc;
12
13 public class IndexPO implements HttpPresentation {
14
15
16     public void run(HttpPresentationComms comms)
17         throws HttpPresentationException, IOException JavaDoc {
18
19         IndexHTML page = (IndexHTML)comms.xmlcFactory.create(IndexHTML.class);
20         comms.response.writeDOM(page);
21     }
22
23 }
Popular Tags