Package org.criticalfailure.torchlight.core.model.model

Examples of org.criticalfailure.torchlight.core.model.model.Setting


                }
                break;
               
            case ACTION_TYPE_SETTING:
                try {
                    Setting setting;

                    // find a setting creation helper
                    if(runWizard) {
                        logger.debug("running wizard to create setting");
View Full Code Here


                    widgetSelected(e);
                }

                public void widgetSelected(SelectionEvent e) {
                    logger.debug("setting campaign setting; index = " + setting.getSelectionIndex());
                    Setting s = (Setting)setting.getData("setting" + setting.getSelectionIndex());
                    logger.trace("s: " + s);
                   
                    if(s != null) {
                      campaign.setSetting(s);
View Full Code Here

TOP

Related Classes of org.criticalfailure.torchlight.core.model.model.Setting

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.