01: /*
02: * projectManagement
03: *
04: * Enhydra super-servlet presentation object
05: *
06: */
07:
08: package projectmanagement.presentation.customers;
09:
10: import projectmanagement.presentation.*;
11: import projectmanagement.spec.customer.*;
12:
13: import org.w3c.dom.*;
14: import org.w3c.dom.html.*;
15:
16: // Enhydra SuperServlet imports
17: import com.lutris.appserver.server.httpPresentation.HttpPresentation;
18: import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
19: import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
20:
21: // Standard imports
22: import java.io.IOException;
23:
24: /**
25: * Generates the blank HTML page.
26: */
27: public class Controls implements HttpPresentation {
28:
29: public void run(HttpPresentationComms comms)
30: throws HttpPresentationException, IOException {
31: ControlsHTML page = new ControlsHTML();
32: comms.response.writeDOM(page);
33: }
34:
35: }
|