Examples of resolveQuotedTextExpression()


Examples of com.volantis.mcs.runtime.policies.PolicyReferenceResolver.resolveQuotedTextExpression()

                        form, NDimensionalIndex.ZERO_DIMENSIONS);
        pattributes.setFormData(formInstance);

        // Process the help as a mariner expression.
        textReference =
                resolver.resolveQuotedTextExpression(attributes.getHelp());
        pattributes.setHelp(textReference);

        // Set the method attribute, the default is "get".
        value = attributes.getMethod();
        if (value == null) {
View Full Code Here

Examples of com.volantis.mcs.runtime.policies.PolicyReferenceResolver.resolveQuotedTextExpression()

        // Set the name attribute.
        String name = attributes.getName();
        pattributes.setName(name);

        // Process the prompt as a mariner expression.
        textReference = resolver.resolveQuotedTextExpression(
                attributes.getPrompt());
        pattributes.setPrompt(textReference);

        // Set the segment attribute.
        pattributes.setSegment(attributes.getSegment());
View Full Code Here

Examples of com.volantis.mcs.runtime.policies.PolicyReferenceResolver.resolveQuotedTextExpression()

                PolicyReferenceResolver resolver =
                        pageContext.getPolicyReferenceResolver();

                TextAssetReference caption =
                        resolver.resolveQuotedTextExpression(labelText);
                attributes.setCaption(caption);

                // The caption container instance will have been set to the
                // current container as part of initialising the attributes.
                final ContainerInstance captionContainer =
View Full Code Here

Examples of com.volantis.mcs.runtime.policies.PolicyReferenceResolver.resolveQuotedTextExpression()

        PolicyReferenceResolver resolver =
                pageContext.getPolicyReferenceResolver();

        // Process the errmsg as a mariner expression.
        object = resolver.resolveQuotedTextExpression(attributes.getErrmsg());
        pattributes.setErrmsg(object);

        // Set the initial value attribute.
        pattributes.setInitial(attributes.getInitial());
View Full Code Here

Examples of com.volantis.mcs.runtime.policies.PolicyReferenceResolver.resolveQuotedTextExpression()

            PolicyReferenceResolver resolver =
                    pageContext.getPolicyReferenceResolver();

            // Process the shortcut
            TextAssetReference shortcutObj =
                    resolver.resolveQuotedTextExpression(shortcut);
            builder.setShortcut(shortcutObj);

            //Process the href as a mariner expression
            LinkAssetReference href = resolver.resolveQuotedLinkExpression(
                    attributes.getHref(), PageURLType.MENU_ITEM);
View Full Code Here

Examples of com.volantis.mcs.runtime.policies.PolicyReferenceResolver.resolveQuotedTextExpression()

            LinkAssetReference href = resolver.resolveQuotedLinkExpression(
                    attributes.getHref(), PageURLType.MENU_ITEM);
            builder.setHref(href);

            // Process the prompt as a mariner expression
            TextAssetReference prompt = resolver.resolveQuotedTextExpression(
                    attributes.getPrompt());
            builder.setPrompt(prompt);

            // Set the title.
            builder.setTitle(attributes.getTitle());
View Full Code Here

Examples of com.volantis.mcs.runtime.policies.PolicyReferenceResolver.resolveQuotedTextExpression()

        PolicyReferenceResolver resolver =
                pageContext.getPolicyReferenceResolver();

        // Process the caption as a mariner expression.
        object = resolver.resolveQuotedTextExpression(xfoga.getCaption());
        optiongroup.setCaption(object);

        // Process the prompt as a mariner expression.
        object = resolver.resolveQuotedTextExpression(xfoga.getPrompt());
        optiongroup.setPrompt(object);
View Full Code Here

Examples of com.volantis.mcs.runtime.policies.PolicyReferenceResolver.resolveQuotedTextExpression()

        // Process the caption as a mariner expression.
        object = resolver.resolveQuotedTextExpression(xfoga.getCaption());
        optiongroup.setCaption(object);

        // Process the prompt as a mariner expression.
        object = resolver.resolveQuotedTextExpression(xfoga.getPrompt());
        optiongroup.setPrompt(object);

        Object enclosing = pageContext.getCurrentElement();

        optiongroup.setStyles(pageContext.getStylingEngine().getStyles());
View Full Code Here

Examples of com.volantis.mcs.runtime.policies.PolicyReferenceResolver.resolveQuotedTextExpression()

        PolicyReferenceResolver resolver =
                pageContext.getPolicyReferenceResolver();

        // Set the client variable name
        TextAssetReference reference = resolver.resolveQuotedTextExpression(
                attributes.getClientVariableName());
        String clientVariableName = getPlainText(reference);

        // One of value and clientVariableName must be specified.
        if (value == null && clientVariableName == null) {
View Full Code Here

Examples of com.volantis.mcs.runtime.policies.PolicyReferenceResolver.resolveQuotedTextExpression()

            // Get the value of the targetLocation attribute, which could be
            // a text component.
            PolicyReferenceResolver resolver =
                    pageContext.getPolicyReferenceResolver();
            TextAssetReference reference = resolver.resolveQuotedTextExpression(
                    attributes.getTargetLocation());
            String target;
            if (reference != null) {
                target = reference.getText(TextEncoding.PLAIN);
            } else {
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.