01: /*
02: * VersionCheckAction.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: import java.awt.event.ActionEvent;
15:
16: import workbench.WbManager;
17: import workbench.resource.ResourceMgr;
18:
19: /**
20: * @author support@sql-workbench.net
21: */
22: public class VersionCheckAction extends WbAction {
23: public VersionCheckAction() {
24: super ();
25: this .initMenuDefinition("MnuTxtVersionCheck");
26: this .setMenuItemName(ResourceMgr.MNU_TXT_TOOLS);
27: this .removeIcon();
28: }
29:
30: public void executeAction(ActionEvent e) {
31: WbManager.getInstance().showDialog(
32: "workbench.gui.tools.VersionCheckDialog");
33: }
34: }
|