01: package phoneList.presentation;
02:
03: // Standard imports
04: import java.io.IOException;
05:
06: // Enhydra SuperServlet imports
07: import com.lutris.appserver.server.httpPresentation.HttpPresentation;
08: import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
09: import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
10:
11: public class CreatePresentation implements HttpPresentation {
12:
13: public void run(HttpPresentationComms comms)
14: throws HttpPresentationException, IOException {
15:
16: CreateHTML create;
17:
18: create = (CreateHTML) comms.xmlcFactory
19: .create(CreateHTML.class);
20:
21: comms.response.writeDOM(create);
22:
23: }
24:
25: }
|