Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: de/hunsicker/jalopy/plugin/jedit/option/ProjectOptionPane.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.ProjectSettingsPage;
10  
11  
12  /**
13   * OptionPane to integrate the Jalopy project options in JEdit's global options dialog.
14   *
15   * @author <a href="http://jalopy.sf.net/contact.html">Marco Hunsicker</a>
16   * @version $Revision: 1.1 $
17   */
18  public class ProjectOptionPane
19      extends JalopyOptionPane
20  {
21      //~ Constructors ---------------------------------------------------------------------
22  
23      /**
24       * Creates a new ProjectOptionPane object.
25       */
26      public ProjectOptionPane()
27      {
28          super("jalopy.project" /* NOI18N */);
29          this.panel = new ProjectSettingsPage();
30      }
31  }