Examples of StyleFormatReference


Examples of com.volantis.mcs.runtime.layouts.StyleFormatReference

        MutablePropertyValues propertyValues = styles.getPropertyValues();
        StyleValue value = propertyValues.getComputedValue(
                StylePropertyDetails.MCS_CONTAINER);

        StyleFormatReference styleFormatReference =
                (StyleFormatReference) value;
        FormatReference formatReference = styleFormatReference.getReference();
        assertSame(formatReferenceMock, formatReference);
    }
View Full Code Here

Examples of com.volantis.mcs.runtime.layouts.StyleFormatReference

        MutablePropertyValues propertyValues = styles.getPropertyValues();
        StyleValue value = propertyValues.getComputedValue(
                StylePropertyDetails.MCS_CONTAINER);

        StyleFormatReference styleFormatReference =
                (StyleFormatReference) value;
        FormatReference formatReference = styleFormatReference.getReference();
        assertSame(formatReferenceMock, formatReference);
    }
View Full Code Here

Examples of com.volantis.mcs.runtime.layouts.StyleFormatReference

        ContainerInstance instance = null;
        String containerName = getSpecifiedContainerName(container);

        if (container instanceof StyleFormatReference) {
            StyleFormatReference styleFormatReference =
                    (StyleFormatReference) container;
            FormatReference reference = styleFormatReference.getReference();

            // Try and find the format instance.
            Format format = pageContext.getFormat(reference.getStem(),
                    FormatNamespace.CONTAINER);
            if (format != null) {
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.