aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/properties/ShorthandParser.java
diff options
context:
space:
mode:
authorFinn Bock <bckfnn@apache.org>2004-09-07 12:40:43 +0000
committerFinn Bock <bckfnn@apache.org>2004-09-07 12:40:43 +0000
commiteb38e93dfd62bb6d79e39ec38be59c79658c1838 (patch)
treed224d88ef5deec524e05bd21e93858ebfc2785fa /src/java/org/apache/fop/fo/properties/ShorthandParser.java
parent369762b15f76a508ee0bcf7ba236af9b7ff4c5a4 (diff)
downloadxmlgraphics-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.java2
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);
}