01: /*
02: * AutoJumpNextStatement.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 workbench.resource.ResourceMgr;
15: import workbench.resource.Settings;
16:
17: /**
18: * Action to toggle the automatic jump to the next statement
19: * if "Execute current" statement is used
20: *
21: * @author support@sql-workbench.net
22: */
23: public class AutoJumpNextStatement extends CheckBoxAction {
24: public AutoJumpNextStatement() {
25: super ("MnuTxtJumpToNext", Settings.PROPERTY_AUTO_JUMP_STATEMENT);
26: this .setMenuItemName(ResourceMgr.MNU_TXT_SQL);
27: this .setCreateMenuSeparator(true);
28: }
29:
30: }
|