01: /*
02: * MoveSqlTabRight.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.gui.MainWindow;
16: import workbench.resource.ResourceMgr;
17:
18: /**
19: * @author support@sql-workbench.net
20: */
21: public class MoveSqlTabRight extends WbAction {
22: private MainWindow client;
23:
24: public MoveSqlTabRight(MainWindow aClient) {
25: super ();
26: this .client = aClient;
27: this .initMenuDefinition("MnuTxtMoveTabRight");
28: this .setIcon(null);
29: }
30:
31: public void executeAction(ActionEvent e) {
32: this.client.moveTabRight();
33: }
34: }
|