Package ariba.ui.wizard.core

Examples of ariba.ui.wizard.core.WizardStep


    public AWResponseGenerating invokeAction(AWRequestContext requestContext, AWComponent component)
    {
        if (PerformanceState.threadStateEnabled()) {
            PerformanceState.getThisThreadHashtable().setSourcePage(_frame.getName());
            WizardStep step = _frame.getStep();
            // step could be null if it is the exit confirmation page.
            if (step != null && !step.isTopLevelStep()) {
                PerformanceState.getThisThreadHashtable().setSourceArea(step.getName());
            }
        }
        return super.invokeAction(requestContext, component);
    }
View Full Code Here

TOP

Related Classes of ariba.ui.wizard.core.WizardStep

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.