KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > applications > ApplicationShortcutEventConstants


1 package com.sslexplorer.applications;
2
3 public interface ApplicationShortcutEventConstants {
4     
5     /*
6      * Application shortcuts
7      */

8
9     /**
10      * An application shortcut has been launched
11      */

12     public static final int APPLICATION_SHORTCUT_LAUNCHED = 640;
13
14     /**
15      * Application shortcut created
16      */

17     public static final int CREATE_APPLICATION_SHORTCUT = 2006;
18
19     /**
20      * Application shortcut updated
21      */

22     public static final int UPDATE_APPLICATION_SHORTCUT = 2007;
23
24     /**
25      * Application shortcut removed
26      */

27     public static final int REMOVE_APPLICATION_SHORTCUT = 2008;
28 }
29
Popular Tags