Package org.apache.axis.tool.service.bean

Examples of org.apache.axis.tool.service.bean.WizardBean


    /* (non-Javadobc)
     * @see org.eclipse.jface.wizard.IWizard#performFinish()
     */
    public boolean performFinish() {
        //create a wizard bean
        WizardBean wizBean = new WizardBean();
        wizBean.setPage1bean(wizardPane1.getBean());
        wizBean.setPage2bean(wizardPane2.getBean());
        wizBean.setPage3bean(wizardPane4.getBean());
        try {
            new Controller().process(wizBean);
            showSuccessMessage(" jar file creation successful! ");
            return true;
        } catch (ProcessException e) {
View Full Code Here

TOP

Related Classes of org.apache.axis.tool.service.bean.WizardBean

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.