KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > projectmanagement > presentation > customers > Controls


1 /*
2  * projectManagement
3  *
4  * Enhydra super-servlet presentation object
5  *
6  */

7
8 package projectmanagement.presentation.customers;
9
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 JavaDoc;
23
24 /**
25 * Generates the blank HTML page.
26 */

27 public class Controls implements HttpPresentation {
28
29    public void run(HttpPresentationComms comms) throws HttpPresentationException, IOException JavaDoc {
30       ControlsHTML page=new ControlsHTML();
31       comms.response.writeDOM(page);
32    }
33
34 }
35
Popular Tags