Package org.gjt.sp.jedit.options

Examples of org.gjt.sp.jedit.options.GlobalOptions


 
  //{{{ handlePreferences() method
  public void handlePreferences(ApplicationEvent event)
  {
    event.setHandled(true);
    new GlobalOptions(jEdit.getActiveView());
  } //}}}
View Full Code Here


      "view.context.customize"));
    customize.addActionListener(new ActionListener()
    {
      public void actionPerformed(ActionEvent evt)
      {
        new GlobalOptions(view,"context");
      }
    });
    popup.addSeparator();
    popup.add(customize);
    textArea.setRightClickPopup(popup);
View Full Code Here

TOP

Related Classes of org.gjt.sp.jedit.options.GlobalOptions

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.