aboutsummaryrefslogtreecommitdiff
path: root/src/stubs/com/sun/tools/javac/tree/DocCommentTable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/stubs/com/sun/tools/javac/tree/DocCommentTable.java')
-rw-r--r--src/stubs/com/sun/tools/javac/tree/DocCommentTable.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stubs/com/sun/tools/javac/tree/DocCommentTable.java b/src/stubs/com/sun/tools/javac/tree/DocCommentTable.java
new file mode 100644
index 00000000..75b2526a
--- /dev/null
+++ b/src/stubs/com/sun/tools/javac/tree/DocCommentTable.java
@@ -0,0 +1,10 @@
+package com.sun.tools.javac.tree;
+
+import com.sun.tools.javac.parser.Tokens.Comment;
+
+public interface DocCommentTable {
+ boolean hasComment(JCTree tree);
+ Comment getComment(JCTree tree);
+ String getCommentText(JCTree tree);
+ void putComment(JCTree tree, Comment c);
+}