Package org.openscience.jchempaint.controller

Examples of org.openscience.jchempaint.controller.ChangeFormalChargeModule


        }else if(action.equals("minus")){
            charge=-1;
        }else if(action.equals("minus2")){
            charge=-2;
        }
        ChangeFormalChargeModule newActiveModule = new ChangeFormalChargeModule(jcpPanel.get2DHub(), charge);
        newActiveModule.setID(action);
        jcpPanel.get2DHub().setActiveDrawModule(newActiveModule);
    logger.debug("About to change atom type of relevant atom!");
    Iterator<IAtom> atomsInRange = null;
    IChemObject object = getSource(event);
    logger.debug("Source of call: ", object);
View Full Code Here

TOP

Related Classes of org.openscience.jchempaint.controller.ChangeFormalChargeModule

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.