KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > echo > plugin > EchoPluginApp


1 package com.quikj.application.web.echo.plugin;
2
3 import com.quikj.server.web.*;
4
5 public class EchoPluginApp implements PluginAppInterface
6 {
7     public EchoPluginApp()
8     {
9     }
10
11     public boolean applicationInit (PluginParameters params)
12     {
13     return true;
14     }
15
16     public String JavaDoc getApplicationName()
17     {
18     return "ECHO";
19     }
20
21     public String JavaDoc getApplicationDescription()
22     {
23     return "This application echoes text messages to the client";
24     }
25
26     public PluginAppClientInterface newInstance()
27     {
28     return (PluginAppClientInterface)(new EchoPluginAppClient());
29     }
30
31     public void dispose()
32     {
33     }
34 }
35
Popular Tags