Browse Source

Documented with generics comments.


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@825566 13f79535-47bb-0310-9956-ffa450edef68
pull/37/head
Adrian Cumiskey 14 years ago
parent
commit
7ea967f682
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/java/org/apache/fop/fo/FObj.java

+ 2
- 2
src/java/org/apache/fop/fo/FObj.java View 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);
}

Loading…
Cancel
Save