Package org.gjt.sp.jedit

Examples of org.gjt.sp.jedit.OptionGroup


   *  Description of the Method
   * TODO: Consider using Plugin option pane properties instead since createOptionPanes(OptionsDialog optionsDialog) is deprecated
   * @param  optionsDialog  Description of the Parameter
   */
  public void createOptionPanes(OptionsDialog optionsDialog) {
    OptionGroup og = new OptionGroup("lazy8ledger-lazy8ledger");
    JFrame view = GUIUtilities.getView(optionsDialog);
    og.addOptionPane(new LedgerGeneralOptionPane(view));
    og.addOptionPane(new LedgerNumberOptionPane(view));
    og.addOptionPane(new LedgerWarningsOptionPane(view));
    optionsDialog.addOptionGroup(og);
  }//}}}
View Full Code Here

TOP

Related Classes of org.gjt.sp.jedit.OptionGroup

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.