aboutsummaryrefslogtreecommitdiffstats
path: root/src/codegen
diff options
context:
space:
mode:
authorGlen Mazza <gmazza@apache.org>2003-12-24 00:06:14 +0000
committerGlen Mazza <gmazza@apache.org>2003-12-24 00:06:14 +0000
commit51b606aa9153e0d4d0bf43055625beaf5a079a9b (patch)
tree4f90c175d2393bdc977c48e2d6fe6247b7354686 /src/codegen
parent24957c08b9c2820d9ac0ce169086f80217b203f5 (diff)
downloadxmlgraphics-fop-51b606aa9153e0d4d0bf43055625beaf5a079a9b.tar.gz
xmlgraphics-fop-51b606aa9153e0d4d0bf43055625beaf5a079a9b.zip
Removed the elementStringTable HashMap references (never used; was
meant to define element-specific makers for a particular property, instead of the default make for the property) from fo.FObj and fo.PropertyList. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197053 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/codegen')
-rw-r--r--src/codegen/fo-property-mapping.xsl13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/codegen/fo-property-mapping.xsl b/src/codegen/fo-property-mapping.xsl
index ad2262645..b4acb2c8b 100644
--- a/src/codegen/fo-property-mapping.xsl
+++ b/src/codegen/fo-property-mapping.xsl
@@ -111,7 +111,10 @@ import org.apache.fop.fo.Property;
public class <xsl:value-of select="@family"/>PropertyMapping implements Constants {
private static Property.Maker[] s_htGeneric = new Property.Maker[PROPERTY_COUNT+1];
- private static HashMap s_htElementStringLists = new HashMap(); // temporary
+ /* s_htElementLists not currently used; apparently for specifying element-specific
+ * property makers (instead of the default maker for a particular property); see
+ * former org.apache.fop.fo.PropertyListBuilder
+ */
private static HashMap s_htElementLists = new HashMap();
private static HashMap s_htSubPropNames = new HashMap();
private static HashMap s_htPropNames = new HashMap();
@@ -121,14 +124,6 @@ public class <xsl:value-of select="@family"/>PropertyMapping implements Constant
<xsl:apply-templates/>
- public static Set getElementStringMappings() { // temporary
- return s_htElementStringLists.keySet();
- }
-
- public static HashMap getElementStringMapping(String elemName) { // temporary
- return (HashMap) s_htElementStringLists.get(elemName);
- }
-
public static Property.Maker[] getGenericMappings() {
return s_htGeneric;
}