aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/area
diff options
context:
space:
mode:
authorAdrian Cumiskey <acumiskey@apache.org>2008-05-28 10:14:26 +0000
committerAdrian Cumiskey <acumiskey@apache.org>2008-05-28 10:14:26 +0000
commit680ceef6585738608946e725ca2959df85b5cebc (patch)
tree16cb3e20f11a6bc9ca2e95fd5708ae38a836a552 /src/java/org/apache/fop/area
parent4a4ec49722df7527eb3084b742f5d21c8b33fbd5 (diff)
downloadxmlgraphics-fop-680ceef6585738608946e725ca2959df85b5cebc.tar.gz
xmlgraphics-fop-680ceef6585738608946e725ca2959df85b5cebc.zip
fixed some small checkstyle problems and commented out unused offDocumentItems member variable
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@660893 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/area')
-rw-r--r--src/java/org/apache/fop/area/AreaTreeModel.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/java/org/apache/fop/area/AreaTreeModel.java b/src/java/org/apache/fop/area/AreaTreeModel.java
index c43db31bb..544ff612a 100644
--- a/src/java/org/apache/fop/area/AreaTreeModel.java
+++ b/src/java/org/apache/fop/area/AreaTreeModel.java
@@ -36,11 +36,11 @@ import org.apache.commons.logging.LogFactory;
* the life of the area tree model.
*/
public class AreaTreeModel {
- private List pageSequenceList = null;
+ private List/*<PageSequence>*/ pageSequenceList = null;
private int currentPageSequenceIndex = -1;
/** the current page sequence */
protected PageSequence currentPageSequence;
- private List offDocumentItems = new java.util.ArrayList();
+// private List offDocumentItems = new java.util.ArrayList();
/** logger instance */
protected static Log log = LogFactory.getLog(AreaTreeModel.class);
@@ -48,7 +48,7 @@ public class AreaTreeModel {
* Create a new store pages model
*/
public AreaTreeModel() {
- pageSequenceList = new java.util.ArrayList();
+ pageSequenceList = new java.util.ArrayList/*<PageSequence>*/();
}
/**
@@ -83,13 +83,13 @@ public class AreaTreeModel {
* Handle an OffDocumentItem
* @param ext the extension to handle
*/
- public void handleOffDocumentItem(OffDocumentItem ext) {};
+ public void handleOffDocumentItem(OffDocumentItem ext) { };
/**
* Signal the end of the document for any processing.
* @throws SAXException if a problem was encountered.
*/
- public void endDocument() throws SAXException {};
+ public void endDocument() throws SAXException { };
/**
* Returns the currently active page-sequence.