Skip to content
Snippets Groups Projects
Commit 40ca66cf authored by tpylak's avatar tpylak
Browse files

minor: add javadoc

SVN: 9622
parent 165fa53a
No related branches found
No related tags found
No related merge requests found
...@@ -39,13 +39,19 @@ public class AppEvents ...@@ -39,13 +39,19 @@ public class AppEvents
*/ */
private final static int STARTING_VALUE = 1000000; private final static int STARTING_VALUE = 1000000;
// TODO 2009-01-30, Tomasz Pylak: is this needed at all? It's fired i n some places, but never
// handled
public final static int CALLBACK_FINISHED = STARTING_VALUE + 10; public final static int CALLBACK_FINISHED = STARTING_VALUE + 10;
// opens the main application window
public final static int INIT = STARTING_VALUE + 20; public final static int INIT = STARTING_VALUE + 20;
// opens the starting page with login window
public final static int LOGIN = STARTING_VALUE + 30; public final static int LOGIN = STARTING_VALUE + 30;
// opens a new tab
public static final int NAVI_EVENT = STARTING_VALUE + 40; public static final int NAVI_EVENT = STARTING_VALUE + 40;
// opens a new browser window with a specified URL
public static final int OPEN_URL_EVENT = STARTING_VALUE + 50; public static final int OPEN_URL_EVENT = STARTING_VALUE + 50;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment