-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataNode.java
72 lines (60 loc) · 1.83 KB
/
DataNode.java
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
package org.jsoup.nodes;
import java.io.IOException;
/**
A data node, for contents of style, script tags etc, where contents should not show in text().
@author Jonathan Hedley, [email protected] */
public class DataNode extends LeafNode {
/**
Create a new DataNode.
@param data data contents
*/
public DataNode(String data) {
value = data;
}
/**
Create a new DataNode.
@param data data contents
@param baseUri Unused, Leaf Nodes do not hold base URis
@deprecated use {@link #DataNode(String)} instead
*/
public DataNode(String data, String baseUri) {
this(data);
}
public String nodeName() {
return "#data";
}
/**
Get the data contents of this node. Will be unescaped and with original new lines, space etc.
@return data
*/
public String getWholeData() {
return coreValue();
}
/**
* Set the data contents of this node.
* @param data unencoded data
* @return this node, for chaining
*/
public DataNode setWholeData(String data) {
coreValue(data);
return this;
}
void outerHtmlHead(Appendable accum, int depth, Document.OutputSettings out) throws IOException {
accum.append(getWholeData()); // data is not escaped in return from data nodes, so " in script, style is plain
}
void outerHtmlTail(Appendable accum, int depth, Document.OutputSettings out) {}
@Override
public String toString() {
return outerHtml();
}
/**
Create a new DataNode from HTML encoded data.
@param encodedData encoded data
@param baseUri bass URI
@return new DataNode
*/
public static DataNode createFromEncoded(String encodedData, String baseUri) {
String data = Entities.unescape(encodedData);
return new DataNode(data);
}
}