Examples of canFinish()


Examples of org.jitterbit.application.ui.wizard.WizardPageChain.canFinish()

    @Override
    public final boolean canFinish() {
        WizardPage page = getCurrentPage();
        if (page != null && page.canContinue()) {
            WizardPageChain chain = getPageChain();
            return chain.canFinish(page);
        }
        return false;
    }

}
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.