Package org.criticalfailure.torchlight.core.application.ui.wizards

Examples of org.criticalfailure.torchlight.core.application.ui.wizards.IDataCreationWizard


                        if(objClass.getName().equals(className))
                        {
                            logger.debug("found a matching class");

                            IDataCreationWizard wizard = (IDataCreationWizard)cel.createExecutableExtension("class");
                            logger.debug("wizard: " + wizard);

                            logger.debug("set object and params for wizard: " + obj);
                            wizard.setCampaign(campaign);
                            wizard.setObject(obj);
                            wizard.setParams(params);

                            logger.debug("tell wizard to setup");
                            wizard.setup();

                            logger.debug("tell wizard to run");
                            wizard.run();

                            if(wizard.isCanceled())
                            {
                                logger.debug("wizard canceled");
                                return null;
                            }
View Full Code Here

TOP

Related Classes of org.criticalfailure.torchlight.core.application.ui.wizards.IDataCreationWizard

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.