aboutsummaryrefslogtreecommitdiff
path: root/src/stubs/com/sun/tools/javac/parser/Tokens.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/stubs/com/sun/tools/javac/parser/Tokens.java')
-rw-r--r--src/stubs/com/sun/tools/javac/parser/Tokens.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/stubs/com/sun/tools/javac/parser/Tokens.java b/src/stubs/com/sun/tools/javac/parser/Tokens.java
new file mode 100644
index 00000000..6e0aa479
--- /dev/null
+++ b/src/stubs/com/sun/tools/javac/parser/Tokens.java
@@ -0,0 +1,21 @@
+package com.sun.tools.javac.parser;
+
+public class Tokens {
+ public static class Token {
+
+ }
+
+ public interface Comment {
+ enum CommentStyle {
+ LINE, BLOCK, JAVADOC,
+ }
+
+ String getText();
+
+ int getSourcePos(int index);
+
+ CommentStyle getStyle();
+
+ boolean isDeprecated();
+ }
+}