01: package fops.presentation;
02:
03: import com.lutris.appserver.server.httpPresentation.HttpPresentation;
04: import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
05: import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
06: import org.w3c.dom.html.*;
07: import org.w3c.dom.Node;
08: import java.io.IOException;
09: import fops.presentation.*;
10: import java.text.DateFormat;
11: import org.w3c.dom.Node;
12:
13: public class BlankPO implements HttpPresentation {
14:
15: public void run(HttpPresentationComms comms)
16: throws HttpPresentationException, IOException {
17:
18: BlankHTML page = (BlankHTML) comms.xmlcFactory
19: .create(BlankHTML.class);
20: comms.response.writeDOM(page);
21: }
22:
23: }
|