Package org.foray.fotree.fo.prop

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


    /**
     * Returns the target-processing-context property.
     * @return The target-processing-context property.
     */
    public String traitTargetProcessingContext() {
        final PdTargetProcessingContext property = (PdTargetProcessingContext)
                getProperty(FoProperty.TARGET_PROCESSING_CONTEXT);
        if (property != null) {
            return property.getValue();
        }
        return PdTargetProcessingContext.getValueNoInstance();
    }
View Full Code Here


        case TARGET_PRESENTATION_CONTEXT: {
            return new PdTargetPresentationContext(fobj, propertyFullName,
                    attributeValue);
        }
        case TARGET_PROCESSING_CONTEXT: {
            return new PdTargetProcessingContext(fobj, propertyFullName,
                    attributeValue);
        }
        case TARGET_STYLESHEET: {
            return new PdTargetStylesheet(fobj, propertyFullName,
                    attributeValue);
View Full Code Here

TOP

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

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.