]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Restored compatibility with third-party extensions.
authorJeremias Maerki <jeremias@apache.org>
Wed, 12 Jan 2011 19:58:50 +0000 (19:58 +0000)
committerJeremias Maerki <jeremias@apache.org>
Wed, 12 Jan 2011 19:58:50 +0000 (19:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1058295 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/ElementMapping.java

index 5417586e0b5e2ce27d91830c2dfb8247e4ee5d8a..befb65eff965599aa3270fd0a64470d5f57eafeb 100644 (file)
@@ -19,7 +19,7 @@
 
 package org.apache.fop.fo;
 
-import java.util.Map;
+import java.util.HashMap;
 
 import javax.xml.parsers.DocumentBuilderFactory;
 import javax.xml.parsers.ParserConfigurationException;
@@ -38,7 +38,7 @@ public abstract class ElementMapping {
     public static final String DEFAULT = "<default>";
 
     /** The HashMap table of formatting objects defined by the ElementMapping */
-    protected Map<String, Maker> foObjs = null;
+    protected HashMap<String, Maker> foObjs = null;
     //Please don't change that to java.util.Map as that can break extensions.
 
     /** The namespace for the ElementMapping */
@@ -49,7 +49,7 @@ public abstract class ElementMapping {
      *
      * @return Table of Maker objects for this ElementMapping
      */
-    public Map<String, Maker> getTable() {
+    public HashMap<String, Maker> getTable() {
         if (foObjs == null) {
             initialize();
         }