olegt 2002/12/22 16:01:56
Modified: src/org/apache/fop/fo/pagination Root.java
Log:
Made fields private.
Revision Changes Path
1.23 +3 -7 xml-fop/src/org/apache/fop/fo/pagination/Root.java
Index: Root.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/pagination/Root.java,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- Root.java 22 Dec 2002 23:37:06 -0000 1.22
+++ Root.java 23 Dec 2002 00:01:56 -0000 1.23
@@ -19,9 +19,8 @@
* The fo:root formatting object. Contains page masters, page-sequences.
*/
public class Root extends FObj {
-
- LayoutMasterSet layoutMasterSet;
- List pageSequences;
+ private LayoutMasterSet layoutMasterSet;
+ private List pageSequences;
/**
* keeps count of page number from over PageSequence instances
@@ -30,11 +29,8 @@
public Root(FONode parent) {
super(parent);
-
// this.properties.get("media-usage");
-
pageSequences = new ArrayList();
-
if (parent != null) {
//throw new FOPException("root must be root element");
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]