Package org.openscience.jchempaint.dialog.editor

Examples of org.openscience.jchempaint.dialog.editor.PseudoAtomEditor


  public void actionPerformed(ActionEvent event) {
    IChemObject object = getSource(event);
    logger.debug("Showing object properties for: ", object);
    ChemObjectEditor editor = null;
    if (object instanceof IPseudoAtom) {
      editor = new PseudoAtomEditor();
    }
    else if (object instanceof IAtom) {
      editor = new AtomEditor(jcpPanel.get2DHub());
    }
    else if (object instanceof IReaction) {
View Full Code Here

TOP

Related Classes of org.openscience.jchempaint.dialog.editor.PseudoAtomEditor

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.