Examples of PdRelativeAlign


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

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

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

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The relative-align property.
     */
    public FoValue getRelativeAlign(final FObj fobj, final FoContext context) {
        final PdRelativeAlign property = (PdRelativeAlign) getProperty(
                FoProperty.RELATIVE_ALIGN);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdRelativeAlign.getValueNoInstance(context, fobj);
    }
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.