From: Glen Mazza Date: Tue, 8 Jun 2004 02:34:31 +0000 (+0000) Subject: public format() renamed to private formatPageSequence(). X-Git-Tag: Root_Temp_KnuthStylePageBreaking~725 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5fea6c429e56401a584204023b8e990cf6b99263;p=xmlgraphics-fop.git public format() renamed to private formatPageSequence(). git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197693 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/apps/Document.java b/src/java/org/apache/fop/apps/Document.java index ae3ab2a83..8bf576258 100644 --- a/src/java/org/apache/fop/apps/Document.java +++ b/src/java/org/apache/fop/apps/Document.java @@ -120,7 +120,7 @@ public class Document implements FOTreeControl, FOTreeListener, public void foPageSequenceComplete (FOTreeEvent event) throws FOPException { PageSequence pageSeq = event.getPageSequence(); areaTree.addBookmarksToAreaTree(); - format(pageSeq, areaTree); + formatPageSequence(pageSeq, areaTree); } /** @@ -187,7 +187,8 @@ public class Document implements FOTreeControl, FOTreeListener, * @param areaTree the area tree to format this page sequence into * @throws FOPException if there is an error formatting the contents */ - public void format(PageSequence pageSeq, AreaTree areaTree) throws FOPException { + private void formatPageSequence(PageSequence pageSeq, AreaTree areaTree) + throws FOPException { Title title = null; if (pageSeq.getTitleFO() != null) { title = getTitleArea(pageSeq.getTitleFO());