Package org.apache.fop.fo.properties

Examples of org.apache.fop.fo.properties.PropertyMaker.make()


                    prop = propertyMaker.make(this, attributeValue, parentFO);
                } else { // e.g. "leader-length.maximum"
                    Property baseProperty
                        = findBaseProperty(attributes, parentFO, propId,
                                basePropertyName, propertyMaker);
                    prop = propertyMaker.make(baseProperty, subpropId,
                            this, attributeValue, parentFO);
                }
                if (prop != null) {
                    putExplicit(propId, prop);
                }
View Full Code Here


     * @throws PropertyException if there's a problem while processing the property
     */
    private Property makeProperty(int propId) throws PropertyException {
        PropertyMaker propertyMaker = findMaker(propId);
        if (propertyMaker != null) {
            return propertyMaker.make(this);
        } else {
            //log.error("property " + propertyName
            //                       + " ignored");
        }
        return null;
View Full Code Here

                 * findBaseProperty()
                 */
                if (getExplicit(propId) != null) {
                    return;
                }
                prop = propertyMaker.make(this, attributeValue, parentFO);
            } else { // e.g. "leader-length.maximum"
                Property baseProperty = findBaseProperty(attributes,
                        parentFO, propId, basePropertyName, propertyMaker);
                int subpropertyId = FOPropertyMapping.getSubPropertyId(subPropertyName);
                if (subpropertyId == -1) {
View Full Code Here

                int subpropertyId = FOPropertyMapping.getSubPropertyId(subPropertyName);
                if (subpropertyId == -1) {
                    handleInvalidProperty(attributeName);
                    return;
                }
                prop = propertyMaker.make(baseProperty, subpropertyId,
                        this, attributeValue, parentFO);
            }
            if (prop != null) {
                putExplicit(propId, prop);
            }
View Full Code Here

     * @throws PropertyException if there's a problem while processing the property
     */
    private Property makeProperty(int propId) throws PropertyException {
        PropertyMaker propertyMaker = findMaker(propId);
        if (propertyMaker != null) {
            return propertyMaker.make(this);
        } else {
            //log.error("property " + propertyName
            //                       + " ignored");
        }
        return null;
View Full Code Here

                 * findBaseProperty()
                 */
                if (getExplicit(propId) != null) {
                    return;
                }
                prop = propertyMaker.make(this, attributeValue, parentFO);
            } else { // e.g. "leader-length.maximum"
                Property baseProperty = findBaseProperty(attributes,
                        parentFO, propId, basePropertyName, propertyMaker);
                int subpropertyId = FOPropertyMapping.getSubPropertyId(subPropertyName);
                if (subpropertyId == -1) {
View Full Code Here

                int subpropertyId = FOPropertyMapping.getSubPropertyId(subPropertyName);
                if (subpropertyId == -1) {
                    handleInvalidProperty(attributeName);
                    return;
                }
                prop = propertyMaker.make(baseProperty, subpropertyId,
                        this, attributeValue, parentFO);
            }
            if (prop != null) {
                putExplicit(propId, prop);
            }
View Full Code Here

     * @throws PropertyException if there's a problem while processing the property
     */
    private Property makeProperty(int propId) throws PropertyException {
        PropertyMaker propertyMaker = findMaker(propId);
        if (propertyMaker != null) {
            return propertyMaker.make(this);
        } else {
            //log.error("property " + propertyName
            //                       + " ignored");
        }
        return 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.