01: /*
02: * ActionRegistration.java
03: *
04: * This file is part of SQL Workbench/J, http://www.sql-workbench.net
05: *
06: * Copyright 2002-2008, Thomas Kellerer
07: * No part of this code maybe reused without the permission of the author
08: *
09: * To contact the author please send an email to: support@sql-workbench.net
10: *
11: */
12: package workbench.gui.actions;
13:
14: /**
15: * Register actions with the ShortcutManager that are not created upon startup.
16: * For this, a dummy action is created (with no client) which will
17: * kick off the registration with the ShortcutManager
18: */
19: public class ActionRegistration {
20: public static void registerActions() {
21: new ToggleTableSourceAction(null);
22: new MoveSqlTabLeft(null);
23: new MoveSqlTabRight(null);
24: new ReloadAction(null);
25: }
26: }
|