KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > rero > ircfw > interfaces > FrameworkConstants


1 package rero.ircfw.interfaces;
2
3 public interface FrameworkConstants
4 {
5    //
6
// Event variables..
7
//
8

9    /** the type of event */
10    public static String JavaDoc $EVENT$ = "$event";
11    public static String JavaDoc $NUMERIC$ = "$numeric";
12
13    /** information regarding the source of the event */
14    public static String JavaDoc $SOURCE$ = "$source";
15       public static String JavaDoc $NICK$ = "$nick";
16       public static String JavaDoc $ADDRESS$ = "$address";
17          public static String JavaDoc $USER$ = "$user";
18          public static String JavaDoc $HOST$ = "$host";
19
20       public static String JavaDoc $SERVER$ = "$server";
21
22    /** the target of the event, who is the event "to" */
23    public static String JavaDoc $TARGET$ = "$target";
24
25    /** parameters from the event */
26    public static String JavaDoc $DATA$ = "$data";
27    public static String JavaDoc $RAW$ = "$raw";
28    public static String JavaDoc $PARMS$ = "$parms";
29
30    /** type of CTCP request (for CTCP's ONLY) */
31    public static String JavaDoc $TYPE$ = "$type";
32 }
33
Popular Tags