Package jSimMacs.display.gromacs

Examples of jSimMacs.display.gromacs.ParameterEditor


    if (es == globalOptions) {
      showOptionDialog();
    }

    else if (es == paramEditorOption) {
      paramEditor = new ParameterEditor();
      paramEditor.pack();
      paramEditor.setSize(700, 650);
      paramEditor.setVisible(true);
    }
View Full Code Here


  }
 
  public void addParamEditButton(){
    this.add(paramButton);
    paramButton.addActionListener(this);
    paramEditor = new ParameterEditor(fileChooser);
    paramEditor.addParamEditorFinishedEventListener(this);
  }
View Full Code Here

TOP

Related Classes of jSimMacs.display.gromacs.ParameterEditor

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.