Source code: plugins/Grabber/GrabberProtocol.java
1 /*
2 * GrabberProtocol.java
3 *
4 * Created on November 7, 2002, 5:14 PM
5 */
6
7 package plugins.Grabber;
8
9 /**
10 *
11 * @author Tobias Riemer
12 */
13 public class GrabberProtocol extends plugins.Messenger.AbstractPluginProtocol {
14
15 /** Is Called if a Message was received. This methode will only be invoked if the
16 * Plugin is enabled
17 */
18 public String processIncoming(String message) {
19 return fireProcessIncoming(message);
20 }
21
22 /** Is called if a Plugin or the Chatframe want to send a Message. This methode will only
23 * be invoked if the Plugin is enabled.
24 */
25 public String processOutgoing(String message) {
26 return fireProcessOutgoing(message);
27 }
28
29 }