Source code: com/voytechs/example/desktop/DesktopServlet.java
1 /*
2 * File: DesktopServlet.java
3 * Auth: Mark Bednarczyk
4 * Date: DATE
5 * Id: $Id: DesktopServlet.java,v 1.1.1.1 2002/01/23 23:52:50 voytechs Exp $
6 ********************************************
7 * $Log: DesktopServlet.java,v $
8 * Revision 1.1.1.1 2002/01/23 23:52:50 voytechs
9 * Initial public release, BETA 1.0 - voytechs
10 *
11 */
12 package com.voytechs.example.desktop;
13
14 import com.voytechs.html.application.ToolServlet;
15 import com.voytechs.html.component.Panel;
16 import com.voytechs.html.event.*;
17
18 import java.lang.*;
19 import java.util.*;
20
21 /**
22 *
23 */
24 public class DesktopServlet
25 extends ToolServlet {
26
27 /* Internal attributes */
28
29
30 /**
31 *
32 * @param
33 * @exception
34 */
35 public DesktopServlet() {
36 super("Desktop");
37
38 }
39
40
41 /**
42 * When a new HttpSession and a ServletFrame are created by the servlet , this method is called
43 * create an application specific Http Panel object for managing the Http GUI for this
44 * user session.
45 */
46 public Panel createSessionPanel()
47 throws EventException {
48
49 Panel panel = new DesktopGui();
50
51 return(panel);
52 }
53
54 /**
55 * Test function for DesktopServlet
56 * @param args command line arguments
57 */
58 public static void main(String [] args) {
59 }
60
61 } /* END OF: DesktopServlet */