Package com.volantis.mcs.protocols.assets.implementation

Examples of com.volantis.mcs.protocols.assets.implementation.RolloverComponentReference


        // Handle the various steps in the image reference resolution
        if (imageStyle == MCSMenuImageStyleKeywords.ROLLOVER) {
            // A rollover menu has been specified
            if (exists(rolloverImage)) {
                // There is a rollover image specified so this will be used
                RolloverComponentReference reference =
                        createRolloverComponentReference(pageContext,
                                rolloverImage);
                normal = reference.getNormal();
                over = reference.getOver();
            } else {
                // No rollover has been specified, so set the normal
                // and over references independently.
                if (exists(offImage)) {
                    normal = createImageAssetReference(pageContext, offImage);
View Full Code Here


        // expressions being evaluated out of order.
        RuntimePolicyReference reference =
                resolver.resolveUnquotedPolicyExpression(rolloverExpression,
                        PolicyType.ROLLOVER_IMAGE);

        return new RolloverComponentReference(
                context.getPolicyFetcher(), context.getAssetResolver(),
                reference);
    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.protocols.assets.implementation.RolloverComponentReference

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.