diff options
author | Roel Spilker <r.spilker@gmail.com> | 2017-11-28 20:57:21 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2017-11-28 20:57:21 +0100 |
commit | 192ce9bc16e7d49533ba6ce12fc570c2bcfab550 (patch) | |
tree | df0c7a3d9583e7c09e77b74b517b472663c41b4c /src/stubsstubs/com/sun/tools/javac/util | |
parent | 14c7456fea937677b147ae5f1563c4953e551f9c (diff) | |
download | lombok-192ce9bc16e7d49533ba6ce12fc570c2bcfab550.tar.gz lombok-192ce9bc16e7d49533ba6ce12fc570c2bcfab550.tar.bz2 lombok-192ce9bc16e7d49533ba6ce12fc570c2bcfab550.zip |
Expanded stubsstubs to ensure the stubs compile correctly.
Diffstat (limited to 'src/stubsstubs/com/sun/tools/javac/util')
-rw-r--r-- | src/stubsstubs/com/sun/tools/javac/util/Context.java | 3 | ||||
-rw-r--r-- | src/stubsstubs/com/sun/tools/javac/util/List.java | 3 | ||||
-rw-r--r-- | src/stubsstubs/com/sun/tools/javac/util/Name.java | 8 |
3 files changed, 14 insertions, 0 deletions
diff --git a/src/stubsstubs/com/sun/tools/javac/util/Context.java b/src/stubsstubs/com/sun/tools/javac/util/Context.java new file mode 100644 index 00000000..9fa6b080 --- /dev/null +++ b/src/stubsstubs/com/sun/tools/javac/util/Context.java @@ -0,0 +1,3 @@ +package com.sun.tools.javac.util; + +public class Context {}
\ No newline at end of file diff --git a/src/stubsstubs/com/sun/tools/javac/util/List.java b/src/stubsstubs/com/sun/tools/javac/util/List.java new file mode 100644 index 00000000..16418a2b --- /dev/null +++ b/src/stubsstubs/com/sun/tools/javac/util/List.java @@ -0,0 +1,3 @@ +package com.sun.tools.javac.util; + +public class List<T> {}
\ No newline at end of file diff --git a/src/stubsstubs/com/sun/tools/javac/util/Name.java b/src/stubsstubs/com/sun/tools/javac/util/Name.java new file mode 100644 index 00000000..c0e81926 --- /dev/null +++ b/src/stubsstubs/com/sun/tools/javac/util/Name.java @@ -0,0 +1,8 @@ +package com.sun.tools.javac.util; + +public class Name implements javax.lang.model.element.Name { + public boolean contentEquals(CharSequence cs) { return false; } + public int length() { return 0; } + public char charAt(int idx) { return '\0'; } + public CharSequence subSequence(int a, int b) { return null; } +}
\ No newline at end of file |