Examples of PdTargetPresentationContext


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

     * Returns the target-presentation-context property.
     * @param fobj The FObj to which the property belongs.
     * @return The target-presentation-context property.
     */
    public String traitTargetPresentationContext(final FObj fobj) {
        final PdTargetPresentationContext property =
                (PdTargetPresentationContext) getProperty(
                        FoProperty.TARGET_PRESENTATION_CONTEXT);
        if (property != null) {
            return property.getValue(fobj);
        }
        return PdTargetPresentationContext.getValueNoInstance(fobj);
    }
View Full Code Here

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

        case TABLE_OMIT_HEADER_AT_BREAK: {
            return new PdTableOmitHeaderAtBreak(fobj, propertyFullName,
                    attributeValue);
        }
        case TARGET_PRESENTATION_CONTEXT: {
            return new PdTargetPresentationContext(fobj, propertyFullName,
                    attributeValue);
        }
        case TARGET_PROCESSING_CONTEXT: {
            return new PdTargetProcessingContext(fobj, propertyFullName,
                    attributeValue);
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.