Source code: de/hunsicker/jalopy/plugin/jedit/option/BlankLinesOptionPane.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.BlankLinesSettingsPage;
10
11
12 /**
13 * OptionPane to integrate the Jalopy blank lines 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.1 $
18 */
19 public class BlankLinesOptionPane
20 extends JalopyOptionPane
21 {
22 //~ Constructors ---------------------------------------------------------------------
23
24 /**
25 * Creates a new BlankLinesOptionPane object.
26 */
27 public BlankLinesOptionPane()
28 {
29 super("jalopy.printer.separation" /* NOI18N */);
30 this.panel = new BlankLinesSettingsPage();
31 }
32 }