Package org.openscience.jchempaint.dialog

Examples of org.openscience.jchempaint.dialog.HelpDialog$PageLoader


      language = "en_US";
    }
   
    if (type.equals("tutorial"))
    {
      new HelpDialog(null, helpRoot+language+"/contain/tutorial.html", GT.get("JChemPaint Help")).setVisible(true);
    }
    else if (type.equals("rgpTutorial"))
    {
      new HelpDialog(null, helpRoot+language+"/contain/rgroup_tutorial.html", GT.get("JChemPaint Help")).setVisible(true);
    }
    else if (type.equals("feedback"))
    {
      new HelpDialog(null, helpRoot+language+"/contain/feedback.html", GT.get("JChemPaint Help")).setVisible(true);
    }
    else if (type.equals("license"))
    {
      new HelpDialog(null, helpRoot+language+"/license.html", GT.get("JChemPaint License")).setVisible(true);
    }
    else
    {
      new HelpDialog(null, helpRoot+language+"/jcp.html", GT.get("JChemPaint Help")).setVisible(true);
    }
  }
View Full Code Here

TOP

Related Classes of org.openscience.jchempaint.dialog.HelpDialog$PageLoader

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.