Package org.foray.fotree.fo.prop

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


     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The caption-side property.
     */
    public FoValue traitCaptionSide(final FObj fobj, final FoContext context) {
        final PdCaptionSide property = (PdCaptionSide) getProperty(
                FoProperty.CAPTION_SIDE);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdCaptionSide.getValueNoInstance(context, fobj);
    }
View Full Code Here


        }
        case BREAK_BEFORE: {
            return new PdBreakBefore(fobj, propertyFullName, attributeValue);
        }
        case CAPTION_SIDE: {
            return new PdCaptionSide(fobj, propertyFullName, attributeValue);
        }
        case CASE_NAME: {
            return new PdCaseName(fobj, propertyFullName, attributeValue);
        }
        case CASE_TITLE: {
View Full Code Here

TOP

Related Classes of org.foray.fotree.fo.prop.PdCaptionSide

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.