Source code: de/hunsicker/jalopy/plugin/jedit/option/WhitespaceOptionPane.java
1 /*
2 * Copyright (c) 2001-2002, Marco Hunsicker. All rights reserved.
3 *
4 * This software is distributable under the BSD license. See the terms of the
5 * BSD license in the documentation provided with this software.
6 */
7 package de.hunsicker.jalopy.plugin.jedit.option;
8
9 import de.hunsicker.jalopy.swing.WhitespaceSettingsPage;
10
11
12 /**
13 * OptionPane to integrate the Jalopy whitespace options in JEdit's global options
14 * dialog.
15 *
16 * @author <a href="http://jalopy.sf.net/contact.html">Marco Hunsicker</a>
17 * @version $Revision: 1.3 $
18 */
19 public class WhitespaceOptionPane
20 extends JalopyOptionPane
21 {
22 //~ Constructors ---------------------------------------------------------------------
23
24 /**
25 * Creates a new WhitespaceOptionPane object.
26 */
27 public WhitespaceOptionPane()
28 {
29 super("jalopy.printer.whitespace" /* NOI18N */);
30 this.panel = new WhitespaceSettingsPage();
31 }
32 }