diff options
author | Finn Bock <bckfnn@apache.org> | 2004-09-07 12:40:43 +0000 |
---|---|---|
committer | Finn Bock <bckfnn@apache.org> | 2004-09-07 12:40:43 +0000 |
commit | eb38e93dfd62bb6d79e39ec38be59c79658c1838 (patch) | |
tree | d224d88ef5deec524e05bd21e93858ebfc2785fa /src/java/org/apache/fop/fo/properties/ShorthandParser.java | |
parent | 369762b15f76a508ee0bcf7ba236af9b7ff4c5a4 (diff) | |
download | xmlgraphics-fop-eb38e93dfd62bb6d79e39ec38be59c79658c1838.tar.gz xmlgraphics-fop-eb38e93dfd62bb6d79e39ec38be59c79658c1838.zip |
Make the shorthand parser API take a generic property rather than
demanding to be passed a ListProperty.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197924 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/properties/ShorthandParser.java')
-rw-r--r-- | src/java/org/apache/fop/fo/properties/ShorthandParser.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fo/properties/ShorthandParser.java b/src/java/org/apache/fop/fo/properties/ShorthandParser.java index b8045b759..0d6b7b09a 100644 --- a/src/java/org/apache/fop/fo/properties/ShorthandParser.java +++ b/src/java/org/apache/fop/fo/properties/ShorthandParser.java @@ -33,7 +33,7 @@ public interface ShorthandParser { * @return Property object corresponding to propName */ Property getValueForProperty(int propId, - ListProperty listProperty, + Property property, PropertyMaker maker, PropertyList propertyList); } |