1 6 7 package enhydraFlash; 8 9 import com.lutris.appserver.server.*; 10 import com.lutris.appserver.server.httpPresentation.*; 11 import com.lutris.appserver.server.session.*; 12 import com.lutris.util.*; 13 14 19 public class EnhydraFlash extends StandardApplication { 20 21 25 public void startup(Config appConfig) throws ApplicationException { 26 super.startup(appConfig); 27 } 30 public boolean requestPreprocessor(HttpPresentationComms comms) 31 throws Exception { 32 return super.requestPreprocessor(comms); 33 } 34 35 43 public String toHtml() { 44 return "This is <I>enhydraFlash</I>"; 45 } 46 } 47 48 | Popular Tags |