Package ariba.ui.wizard.core

Examples of ariba.ui.wizard.core.WizardFrameDelegate


    public void init ()
    {
        _frame = ((WizardPage)pageComponent()).frame();
        if (_frame.getDelegate() == null) {
            _frame.setDelegate(new WizardFrameDelegate() {
                public WizardActionTarget targetForAction(WizardAction action)
                {
                    return actionClicked(action);
                }
View Full Code Here


    public void renderResponse(AWRequestContext requestContext, AWComponent component)
    {
            // we need to set the current frame in the
            // case of browser back
        _wizard.setCurrentActionTarget(_frame);
        WizardFrameDelegate frameDelegate = _frame.getDelegate();
        if (frameDelegate != null) {
            frameDelegate.prepareForResponse(_frame);
        }

        // For wizards we record the wizard label as the "Page" (even though
        // it's not) so we can record any frame as the "area"
        if (PerformanceState.threadStateEnabled()) {
View Full Code Here

TOP

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

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.