aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
authorAdrian Cumiskey <acumiskey@apache.org>2009-06-23 13:17:20 +0000
committerAdrian Cumiskey <acumiskey@apache.org>2009-06-23 13:17:20 +0000
commita8db2f8b67c333d8aa41716b300fad5998d2c894 (patch)
treed5a8128da5d5882c0f13c30476ac7b2d36958995 /src/java
parent05af29325113db4194583011712e5f2742f1c667 (diff)
downloadxmlgraphics-fop-a8db2f8b67c333d8aa41716b300fad5998d2c894.tar.gz
xmlgraphics-fop-a8db2f8b67c333d8aa41716b300fad5998d2c894.zip
Added generics comments.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@787667 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r--src/java/org/apache/fop/fo/FObj.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/java/org/apache/fop/fo/FObj.java b/src/java/org/apache/fop/fo/FObj.java
index 55844e6db..2ebfaaf95 100644
--- a/src/java/org/apache/fop/fo/FObj.java
+++ b/src/java/org/apache/fop/fo/FObj.java
@@ -53,7 +53,7 @@ public abstract class FObj extends FONode implements Constants {
protected FONode firstChild;
/** The list of extension attachments, null if none */
- private List extensionAttachments = null;
+ private List/*<ExtensionAttachment>*/ extensionAttachments = null;
/** The map of foreign attributes, null if none */
private Map foreignAttributes = null;
@@ -554,7 +554,7 @@ public abstract class FObj extends FONode implements Constants {
"Parameter attachment must not be null");
}
if (extensionAttachments == null) {
- extensionAttachments = new java.util.ArrayList();
+ extensionAttachments = new java.util.ArrayList/*<ExtensionAttachment>*/();
}
if (log.isDebugEnabled()) {
log.debug("ExtensionAttachment of category "
@@ -565,7 +565,7 @@ public abstract class FObj extends FONode implements Constants {
}
/** @return the extension attachments of this FObj. */
- public List getExtensionAttachments() {
+ public List/*<ExtensionAttachment>*/ getExtensionAttachments() {
if (extensionAttachments == null) {
return Collections.EMPTY_LIST;
} else {