Package org.apache.fop.fo.expr

Examples of org.apache.fop.fo.expr.PropertyInfo


                newProp = checkEnumValues(pvalue);
            }
            if (newProp == null) {
                // Override parsePropertyValue in each subclass of Property.Maker
                newProp = PropertyParser.parse(pvalue,
                                                  new PropertyInfo(this,
                                                  propertyList, fo));
            }
            if (newProp != null) {
                newProp = convertProperty(newProp, propertyList, fo);
            }
View Full Code Here


                    String pvalue = checkValueKeywords(sval);
                    if (!pvalue.equals(sval)) {
                        // log.debug("Convert shorthand keyword" + pvalue);
                        // Substituted a value: must parse it
                        Property p = PropertyParser.parse(pvalue,
                                                 new PropertyInfo(this,
                                                                  propertyList,
                                                                  fo));
                        pret = convertProperty(p, propertyList, fo);
                    }
                }
View Full Code Here

  if (pret == null) {
    /* Check for keyword shorthand values to be substituted. */
    pvalue = checkValueKeywords(value);
    // Override parsePropertyValue in each subclass of Property.Maker
    Property p = PropertyParser.parse(pvalue,
           new PropertyInfo(this, propertyList, fo));
    pret = convertProperty(p, propertyList, fo);
  }
  else if (isCompoundMaker()) {
    pret = convertProperty(pret, propertyList, fo);
  }
View Full Code Here

                newProp = checkEnumValues(pvalue);
            }
            if (newProp == null) {
                // Override parsePropertyValue in each subclass of Property.Maker
                newProp = PropertyParser.parse(pvalue,
                                                  new PropertyInfo(this,
                                                  propertyList, fo));
            }
            if (newProp != null) {
                newProp = convertProperty(newProp, propertyList, fo);
            }
View Full Code Here

                    String pvalue = checkValueKeywords(sval);
                    if (!pvalue.equals(sval)) {
                        // log.debug("Convert shorthand keyword" + pvalue);
                        // Substituted a value: must parse it
                        Property p = PropertyParser.parse(pvalue,
                                                 new PropertyInfo(this,
                                                                  propertyList,
                                                                  fo));
                        pret = convertProperty(p, propertyList, fo);
                    }
                }
View Full Code Here

TOP

Related Classes of org.apache.fop.fo.expr.PropertyInfo

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.