]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Documented with generics comments.
authorAdrian Cumiskey <acumiskey@apache.org>
Thu, 15 Oct 2009 17:07:08 +0000 (17:07 +0000)
committerAdrian Cumiskey <acumiskey@apache.org>
Thu, 15 Oct 2009 17:07:08 +0000 (17:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@825566 13f79535-47bb-0310-9956-ffa450edef68

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

index 2ebfaaf950d8164cf6d16e23b8b177e72f5df847..133d932bc68832ab68223abc2784f2b60289952e 100644 (file)
@@ -56,7 +56,7 @@ public abstract class FObj extends FONode implements Constants {
     private List/*<ExtensionAttachment>*/ extensionAttachments = null;
 
     /** The map of foreign attributes, null if none */
-    private Map foreignAttributes = null;
+    private Map/*<QName,String>*/ foreignAttributes = null;
 
     /** Used to indicate if this FO is either an Out Of Line FO (see rec)
      *  or a descendant of one. Used during FO validation.
@@ -591,7 +591,7 @@ public abstract class FObj extends FONode implements Constants {
             throw new NullPointerException("Parameter attributeName must not be null");
         }
         if (foreignAttributes == null) {
-            foreignAttributes = new java.util.HashMap();
+            foreignAttributes = new java.util.HashMap/*<QName,String>*/();
         }
         foreignAttributes.put(attributeName, value);
     }