blob: 4f8236c3edd83e6b2e3b4277648f376264d8638f (
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
|
/*
* $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.extensions;
import org.apache.fop.fo.FONode;
import org.apache.fop.apps.FOPException;
import java.util.*;
import org.xml.sax.Attributes;
public class Outline extends ExtensionObj {
private Label label;
private ArrayList outlines = new ArrayList();
private String internalDestination;
private String externalDestination;
public Outline(FONode parent) {
super(parent);
}
public void handleAttrs(Attributes attlist) throws FOPException {
internalDestination =
attlist.getValue("internal-destination");
externalDestination =
attlist.getValue("external-destination");
if (externalDestination != null &&!externalDestination.equals("")) {
log.warn("fox:outline external-destination not supported currently.");
}
if (internalDestination == null || internalDestination.equals("")) {
log.warn("fox:outline requires an internal-destination.");
}
}
protected void addChild(FONode obj) {
if (obj instanceof Label) {
label = (Label)obj;
} else if (obj instanceof Outline) {
outlines.add(obj);
}
}
public BookmarkData getData() {
BookmarkData data = new BookmarkData(internalDestination);
data.setLabel(getLabel());
for(int count = 0; count < outlines.size(); count++) {
Outline out = (Outline)outlines.get(count);
data.addSubData(out.getData());
}
return data;
}
public String getLabel() {
return label == null ? "" : label.toString();
}
}
|