KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > phoneList > PhoneList


1 /*
2  * phoneList
3  * A sample Enhydra Application
4  *
5  */

6 package phoneList;
7
8 import com.lutris.appserver.server.ApplicationException;
9 import com.lutris.appserver.server.StandardApplication;
10 import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
11 import com.lutris.util.Config;
12 import java.io.File JavaDoc;
13 //import org.enhydra.util.ConfigFileInterface;
14

15 public class PhoneList extends StandardApplication
16 {
17
18    public PhoneList()
19     {
20     }
21
22     public void startup(Config appConfig)
23         throws ApplicationException
24     {
25        super.startup(appConfig);
26     }
27
28     public boolean requestPreprocessor(HttpPresentationComms comms)
29                    throws Exception JavaDoc {
30         return super.requestPreprocessor(comms);
31     }
32
33     
34     public String JavaDoc toHtml() {
35         return "This is <I>phoneList</I>";
36     }
37 }
38
39
Popular Tags