aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/jsoup/nodes/Comment.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/jsoup/nodes/Comment.java')
-rw-r--r--src/org/jsoup/nodes/Comment.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/org/jsoup/nodes/Comment.java b/src/org/jsoup/nodes/Comment.java
deleted file mode 100644
index 37fd4368fa..0000000000
--- a/src/org/jsoup/nodes/Comment.java
+++ /dev/null
@@ -1,46 +0,0 @@
-package org.jsoup.nodes;
-
-/**
- A comment node.
-
- @author Jonathan Hedley, jonathan@hedley.net */
-public class Comment extends Node {
- private static final String COMMENT_KEY = "comment";
-
- /**
- Create a new comment node.
- @param data The contents of the comment
- @param baseUri base URI
- */
- public Comment(String data, String baseUri) {
- super(baseUri);
- attributes.put(COMMENT_KEY, data);
- }
-
- public String nodeName() {
- return "#comment";
- }
-
- /**
- Get the contents of the comment.
- @return comment content
- */
- public String getData() {
- return attributes.get(COMMENT_KEY);
- }
-
- void outerHtmlHead(StringBuilder accum, int depth, Document.OutputSettings out) {
- if (out.prettyPrint())
- indent(accum, depth, out);
- accum
- .append("<!--")
- .append(getData())
- .append("-->");
- }
-
- void outerHtmlTail(StringBuilder accum, int depth, Document.OutputSettings out) {}
-
- public String toString() {
- return outerHtml();
- }
-}