01: /*
02: * ViewLineNumbers.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.Settings;
15:
16: /**
17: * Toggle the display of line numbers in the editor
18: * @author support@sql-workbench.net
19: */
20: public class ViewLineNumbers extends CheckBoxAction {
21: public ViewLineNumbers() {
22: super ("MnuTxtShowLineNumbers",
23: Settings.PROPERTY_SHOW_LINE_NUMBERS);
24: }
25:
26: }
|