Package org.jbpm.ui.forms

Examples of org.jbpm.ui.forms.FormType.validate()


            addError("formNode.validationFileNotFound");
            return;
        }
        FormType formType = FormTypeProvider.getFormType(this.formType);
        IFile formFile = IOUtils.getAdjacentFile(getProcessDefinition().getDefinitionFile(), this.formFileName);
        formType.validate(formFile, this);
    }
   
    public Set<String> getValidationVariables(IFolder processFolder) throws Exception {
        if (!hasFormValidation()) {
            return new HashSet<String>();
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.