Examples of PdRelativePosition


Examples of org.foray.fotree.fo.prop.PdRelativePosition

        }
        case RELATIVE_ALIGN: {
            return new PdRelativeAlign(fobj, propertyFullName, attributeValue);
        }
        case RELATIVE_POSITION: {
            return new PdRelativePosition(fobj, propertyFullName,
                    attributeValue);
        }
        case RENDERING_INTENT: {
            return new PdRenderingIntent(fobj, propertyFullName,
                    attributeValue);
View Full Code Here

Examples of org.foray.fotree.fo.prop.PdRelativePosition

     * issues.
     * @return The relative-position property.
     */
    public FoValue traitRelativePosition(final FObj fobj,
            final FoContext context) {
        final PdRelativePosition property = (PdRelativePosition) getProperty(
                FoProperty.RELATIVE_POSITION);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        // Try the shorthand.
        final PdPosition position = (PdPosition) getProperty(
                FoProperty.POSITION);
        if (position != 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.