Package org.gjt.sp.jedit.gui

Examples of org.gjt.sp.jedit.gui.TextAreaDialog$ActionHandler


  static void handleError(Component comp, Exception e)
  {
    Log.log(Log.ERROR,SearchAndReplace.class,e);
    if(comp instanceof Dialog)
    {
      new TextAreaDialog((Dialog)comp,
        beanshell ? "searcherror-bsh"
        : "searcherror",e);
    }
    else
    {
      new TextAreaDialog((Frame)comp,
        beanshell ? "searcherror-bsh"
        : "searcherror",e);
    }
  } //}}}
View Full Code Here

TOP

Related Classes of org.gjt.sp.jedit.gui.TextAreaDialog$ActionHandler

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.