Package com.volantis.mcs.papi

Examples of com.volantis.mcs.papi.XFSelectAttributes


    String getInitialValue(
            MarinerPageContext pageContext,
            PAPIAttributes papiAttributes)
            throws PAPIException {

        XFSelectAttributes attributes = (XFSelectAttributes) papiAttributes;

        return attributes.getInitial();
    }
View Full Code Here


            throws PAPIException {

        MarinerPageContext pageContext
                = ContextInternals.getMarinerPageContext(context);

        XFSelectAttributes attributes = (XFSelectAttributes) papiAttributes;

        // Create a new protocol attributes object every time, as this element
        // could be reused before the attributes have actually been finished with
        // by the protocol.
        pattributes = new com.volantis.mcs.protocols.XFSelectAttributes();

        // Initialise the attributes specific to this field.
        TextAssetReference object;

        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());

        // Set the multiple attribute.
        pattributes.setMultiple(multiple);

        // Set the tag name
View Full Code Here

TOP

Related Classes of com.volantis.mcs.papi.XFSelectAttributes

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.