01: /*
02: * AboutAction.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: import workbench.WbManager;
16:
17: /**
18: * Action to display program version information
19: * @see workbench.gui.dialogs.WbAboutDialog
20: * @author support@sql-workbench.net
21: */
22: public class AboutAction extends WbAction {
23: public AboutAction() {
24: super ();
25: initMenuDefinition("MnuTxtAbout");
26: removeIcon();
27: }
28:
29: public void executeAction(ActionEvent e) {
30: WbManager.getInstance().showDialog(
31: "workbench.gui.dialogs.WbAboutDialog");
32: }
33: }
|