aboutsummaryrefslogtreecommitdiffstats
path: root/src/codegen
diff options
context:
space:
mode:
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;
}