blob: 4a16a7fd15239a7c17df1432ee30e374b84d5d06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/*
* $Id$
* Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
package org.apache.fop.fo.pagination;
// FOP
import org.apache.fop.fo.*;
import org.apache.fop.fo.flow.*;
import org.apache.fop.fo.properties.*;
import org.apache.fop.layout.AreaTree;
import org.apache.fop.apps.FOPException;
import org.apache.fop.extensions.ExtensionObj;
// Java
import java.util.Vector;
import java.util.Enumeration;
/**
* The fo:root formatting object. Contains page masters, root extensions,
* page-sequences.
*/
public class Root extends FObj {
LayoutMasterSet layoutMasterSet;
Vector pageSequences;
/**
* keeps count of page number from over PageSequence instances
*/
private int runningPageNumberCounter = 0;
public Root(FObj parent) {
super(parent);
// this.properties.get("media-usage");
pageSequences = new Vector();
if (parent != null) {
//throw new FOPException("root must be root element");
}
}
protected int getRunningPageNumberCounter() {
return this.runningPageNumberCounter;
}
protected void setRunningPageNumberCounter(int count) {
this.runningPageNumberCounter = count;
}
/**
* @deprecated handled by addChild now
*/
public void addPageSequence(PageSequence pageSequence) {
this.pageSequences.addElement(pageSequence);
}
public int getPageSequenceCount() {
return pageSequences.size();
}
/**
* Some properties, such as 'force-page-count', require a
* page-sequence to know about some properties of the next.
* @returns succeeding PageSequence; null if none
*/
public PageSequence getSucceedingPageSequence(PageSequence current) {
int currentIndex = pageSequences.indexOf(current);
if (currentIndex == -1)
return null;
if (currentIndex < (pageSequences.size() - 1)) {
return (PageSequence)pageSequences.elementAt(currentIndex + 1);
} else {
return null;
}
}
public LayoutMasterSet getLayoutMasterSet() {
return this.layoutMasterSet;
}
public void setLayoutMasterSet(LayoutMasterSet layoutMasterSet) {
this.layoutMasterSet = layoutMasterSet;
}
}
|