Examples of EngineSettingValueForm


Examples of org.hoteia.qalingo.core.web.mvc.form.EngineSettingValueForm

        }
        return engineSettingForm;
    }
   
    public EngineSettingValueForm buildEngineSettingValueForm(final RequestData requestData, final EngineSettingValue engineSettingValue) throws Exception {
        final EngineSettingValueForm engineSettingValueForm = new EngineSettingValueForm();
        if(engineSettingValue != null){
            engineSettingValueForm.setId(engineSettingValue.getId().toString());
            engineSettingValueForm.setContext(engineSettingValue.getContext());
            engineSettingValueForm.setValue(engineSettingValue.getValue());
        }
        return engineSettingValueForm;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.