4833l4 Listing 4. FooPresentation.java, a Simple Presentation Object for the Skeleton Super-Servlet /* * myproject * * Enhydra super-servlet presentation object * */ package il.co.lerner.presentation; // Enhydra SuperServlet imports import com.lutris.appserver.server.httpPresentation.HttpPresentation; import com.lutris.appserver.server.httpPresentation.HttpPresentationComms; import com.lutris.appserver.server.httpPresentation.HttpPresentationException; // Standard imports import java.io.IOException; import java.util.Date; import java.text.DateFormat; public class FooPresentation implements HttpPresentation { public void run(HttpPresentationComms comms) throws HttpPresentationException, IOException { // Send the content type to the user's browser comms.response.setContentType("text/html"); // Print some HTML comms.response.writeHTML(""); comms.response.writeHTML("Foo"); comms.response.writeHTML(""); comms.response.writeHTML("

Foo

"); comms.response.writeHTML(""); comms.response.writeHTML(""); } }