Package org.jbpm.formbuilder.shared.task

Examples of org.jbpm.formbuilder.shared.task.ExternalDataRef


        setWidget(3, 1, xpathTextBox);
    }
   
    public ExternalDataRef getData() {
        if (isValid) {
            ExternalDataRef ref = new ExternalDataRef();
            ref.setSource(sourceTextBox.getValue());
            ref.setMethod(methodListBox.getValue(methodListBox.getSelectedIndex()));
            ref.setResponseLanguage(responseListBox.getValue(responseListBox.getSelectedIndex()));
            ref.setXpath(xpathTextBox.getValue());
            return ref;
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of org.jbpm.formbuilder.shared.task.ExternalDataRef

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.