aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2004-09-23 10:04:36 +0000
committerJeremias Maerki <jeremias@apache.org>2004-09-23 10:04:36 +0000
commitab8ea40b5b1149ccf541c57da3c513bfd5e233da (patch)
tree81b8525e63d08bcf27f1b8bed06e42b6d4d142d6 /src/java/org/apache
parentd0bb3c73345e04470e0d3bf420bb58ca0920430d (diff)
downloadxmlgraphics-fop-ab8ea40b5b1149ccf541c57da3c513bfd5e233da.tar.gz
xmlgraphics-fop-ab8ea40b5b1149ccf541c57da3c513bfd5e233da.zip
Removed illegal tab characters. Please, guys, pay attention to your IDE settings! Checkstyle in Eclipse, for example, does a very good job of uncovering things like that.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197968 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache')
-rw-r--r--src/java/org/apache/fop/area/StorePagesModel.java10
-rw-r--r--src/java/org/apache/fop/fo/pagination/Root.java18
2 files changed, 14 insertions, 14 deletions
diff --git a/src/java/org/apache/fop/area/StorePagesModel.java b/src/java/org/apache/fop/area/StorePagesModel.java
index bdf8f18db..5e1b044b7 100644
--- a/src/java/org/apache/fop/area/StorePagesModel.java
+++ b/src/java/org/apache/fop/area/StorePagesModel.java
@@ -135,11 +135,11 @@ public class StorePagesModel extends AreaTreeModel {
}
/**
- * Get the title for a page sequence.
- * @param count the page sequence count
- * @return the title of the page sequence
- */
- public Title getTitle(int count) {
+ * Get the title for a page sequence.
+ * @param count the page sequence count
+ * @return the title of the page sequence
+ */
+ public Title getTitle(int count) {
return (Title) titles.get(count);
}
diff --git a/src/java/org/apache/fop/fo/pagination/Root.java b/src/java/org/apache/fop/fo/pagination/Root.java
index da3f642bf..cf583cc8c 100644
--- a/src/java/org/apache/fop/fo/pagination/Root.java
+++ b/src/java/org/apache/fop/fo/pagination/Root.java
@@ -120,15 +120,15 @@ public class Root extends FObj {
this.foEventHandler = foEventHandler;
}
- /**
- * This method overrides the FONode version. The FONode version calls the
- * method by the same name for the parent object. Since Root is at the top
- * of the tree, it returns the actual FOEventHandler object. Thus, any FONode
- * can use this chain to find which FOEventHandler it is being built for.
- * @return the FOEventHandler implementation that this Root is attached to
- */
- public FOEventHandler getFOEventHandler() {
- return foEventHandler;
+ /**
+ * This method overrides the FONode version. The FONode version calls the
+ * method by the same name for the parent object. Since Root is at the top
+ * of the tree, it returns the actual FOEventHandler object. Thus, any FONode
+ * can use this chain to find which FOEventHandler it is being built for.
+ * @return the FOEventHandler implementation that this Root is attached to
+ */
+ public FOEventHandler getFOEventHandler() {
+ return foEventHandler;
}
/**