KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fops > presentation > HelpPO


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 HelpPO implements HttpPresentation {
14
15
16     public void run(HttpPresentationComms comms)
17         throws HttpPresentationException, IOException JavaDoc {
18
19                     HelpHTML page = (HelpHTML)comms.xmlcFactory.create(HelpHTML.class);
20           comms.response.writeDOM(page);
21
22     }
23
24 }
Popular Tags