blob: b9b66a1b817a28b894338dc451e8a55c3b19b8b4 (
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
|
package org.apache.xml.fop.fo.flow;
// FOP
import org.apache.xml.fop.fo.*;
import org.apache.xml.fop.fo.properties.*;
import org.apache.xml.fop.fo.pagination.PageSequence;
import org.apache.xml.fop.layout.Area;
import org.apache.xml.fop.apps.FOPException;
// Java
import java.util.Hashtable;
import java.util.Enumeration;
public class Flow extends FObj {
public static class Maker extends FObj.Maker {
public FObj make(FObj parent, PropertyList propertyList)
throws FOPException {
return new Flow(parent, propertyList);
}
}
public static FObj.Maker maker() {
return new Flow.Maker();
}
PageSequence pageSequence;
protected Flow(FObj parent, PropertyList propertyList)
throws FOPException {
super(parent, propertyList);
this.name = "fo:flow";
if (parent.getName().equals("fo:page-sequence")) {
this.pageSequence = (PageSequence) parent;
} else {
throw new FOPException("flow must be child of "
+ "page-sequence, not "
+ parent.getName());
}
pageSequence.setFlow(this);
}
public int layout(Area area) throws FOPException {
if (this.marker == START) {
this.marker = 0;
}
int numChildren = this.children.size();
for (int i = this.marker; i < numChildren; i++) {
FObj fo = (FObj) children.elementAt(i);
int status;
if ((status = fo.layout(area)) != OK) {
this.marker = i;
return status;
}
}
return OK;
}
}
|