1 19 20 package xalanDoc.presentation; 21 22 import java.util.Date ; 23 import com.lutris.appserver.server.httpPresentation.*; 25 26 public class Welcome implements HttpPresentation { 27 28 29 public void run(HttpPresentationComms comms) 30 throws HttpPresentationException { 31 32 String now = new Date ().toString(); 33 WelcomeHTML welcome = (WelcomeHTML)comms.xmlcFactory.create(WelcomeHTML.class); 34 comms.response.writeHTML(welcome); 36 } 37 38 } 39 | Popular Tags |