From 192ce9bc16e7d49533ba6ce12fc570c2bcfab550 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Tue, 28 Nov 2017 20:57:21 +0100 Subject: Expanded stubsstubs to ensure the stubs compile correctly. --- src/stubsstubs/com/sun/tools/javac/code/Attribute.java | 15 +++++++++++++++ src/stubsstubs/com/sun/tools/javac/code/Type.java | 3 +++ 2 files changed, 18 insertions(+) create mode 100644 src/stubsstubs/com/sun/tools/javac/code/Attribute.java create mode 100644 src/stubsstubs/com/sun/tools/javac/code/Type.java (limited to 'src/stubsstubs/com/sun/tools/javac/code') diff --git a/src/stubsstubs/com/sun/tools/javac/code/Attribute.java b/src/stubsstubs/com/sun/tools/javac/code/Attribute.java new file mode 100644 index 00000000..29bd54a9 --- /dev/null +++ b/src/stubsstubs/com/sun/tools/javac/code/Attribute.java @@ -0,0 +1,15 @@ +package com.sun.tools.javac.code; + +import java.util.Map; + +import javax.lang.model.element.AnnotationMirror; +import javax.lang.model.element.AnnotationValue; +import javax.lang.model.element.ExecutableElement; +import javax.lang.model.type.DeclaredType; + +public abstract class Attribute { + public static class Compound extends Attribute implements AnnotationMirror { + public DeclaredType getAnnotationType() { return null; } + public Map getElementValues() { return null; } + } +} \ No newline at end of file diff --git a/src/stubsstubs/com/sun/tools/javac/code/Type.java b/src/stubsstubs/com/sun/tools/javac/code/Type.java new file mode 100644 index 00000000..c130ae9c --- /dev/null +++ b/src/stubsstubs/com/sun/tools/javac/code/Type.java @@ -0,0 +1,3 @@ +package com.sun.tools.javac.code; + +public class Type {} \ No newline at end of file -- cgit