Package ariba.ui.aribaweb.util

Examples of ariba.ui.aribaweb.util.AWEnvironmentStack.push()


    public void applyValues(AWRequestContext requestContext, AWComponent component)
    {
        if (!booleanValueForBinding(BindingNames.omitTags) &&
            !AWEditableRegion.disabled(requestContext())) {
            AWEnvironmentStack environmentStack = env();
            environmentStack.push(RadioValueKey, RadioDefaultKey);
            super.applyValues(requestContext, component);
            // get the radioSelection from the environment (put there
            // by one of the RadioButtons) and push to the parent
            Object radioSelection = environmentStack.pop(RadioValueKey);
            if (RadioDefaultKey.equals(radioSelection)) {
View Full Code Here


        AWEnvironmentStack env = requestContext.pageComponent().env();

        List idList= (List)env.peek(ClientSideConfirmationIdList);
        if (idList == null) {
            idList = ListUtil.list();
            env.push(Confirmation.ClientSideConfirmationIdList, idList);
        }
        idList.add(confirmationId);
    }

    /*
 
View Full Code Here

        boolean forceCreate = isPush && (_pushNewContextBinding != null && _pushNewContextBinding.booleanValue(component) );
        if (context == null || forceCreate) {
            UIMeta meta = UIMeta.getInstance();
            context = meta.newContext();
            ((UIMeta.UIContext)context).setRequestContext(component.requestContext());
            env.push(EnvKey, context);
            didCreate = true;
        }

        if (component.requestContext().currentPhase() == AWRequestContext.Phase_Render) {
            // if we haven't checked, look for and init embedded MetaRules tags
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.