Package org.openscience.jchempaint.dialog

Examples of org.openscience.jchempaint.dialog.TextViewDialog


  public void actionPerformed(ActionEvent e)
  {
    logger.debug("Trying to create smile: ", type);
    if (dialog == null)
    {
      dialog = new TextViewDialog(frame, "SMILES", null, false, 40, 2);
      dialog.setName("smilestextdialog");
    }
    try
    {
      String smiles = getSmiles(jcpPanel.getChemModel());
View Full Code Here


        logger.debug("Trying to create InChI: ", type);
        WaitDialog.showDialog();


        if (dialog == null) {
            dialog = new TextViewDialog(frame, "InChI", null, false, 40, 2);
        }

        ChemModel model = (ChemModel) jcpPanel.getChemModel();
        if (model.getReactionSet() != null
                && model.getReactionSet().getReactionCount() > 0) {
View Full Code Here

TOP

Related Classes of org.openscience.jchempaint.dialog.TextViewDialog

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.