< prev index next >

test/langtools/tools/javac/lib/JavacTestingAbstractProcessor.java

Print this page

        

*** 108,149 **** /* * The set of visitors below will directly extend the most recent * corresponding platform visitor type. */ ! @SupportedSourceVersion(RELEASE_12) public static abstract class AbstractAnnotationValueVisitor<R, P> extends AbstractAnnotationValueVisitor9<R, P> { /** * Constructor for concrete subclasses to call. */ protected AbstractAnnotationValueVisitor() { super(); } } ! @SupportedSourceVersion(RELEASE_12) public static abstract class AbstractElementVisitor<R, P> extends AbstractElementVisitor9<R, P> { /** * Constructor for concrete subclasses to call. */ protected AbstractElementVisitor(){ super(); } } ! @SupportedSourceVersion(RELEASE_12) public static abstract class AbstractTypeVisitor<R, P> extends AbstractTypeVisitor9<R, P> { /** * Constructor for concrete subclasses to call. */ protected AbstractTypeVisitor() { super(); } } ! @SupportedSourceVersion(RELEASE_12) public static class ElementKindVisitor<R, P> extends ElementKindVisitor9<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */ --- 108,149 ---- /* * The set of visitors below will directly extend the most recent * corresponding platform visitor type. */ ! @SupportedSourceVersion(RELEASE_13) public static abstract class AbstractAnnotationValueVisitor<R, P> extends AbstractAnnotationValueVisitor9<R, P> { /** * Constructor for concrete subclasses to call. */ protected AbstractAnnotationValueVisitor() { super(); } } ! @SupportedSourceVersion(RELEASE_13) public static abstract class AbstractElementVisitor<R, P> extends AbstractElementVisitor9<R, P> { /** * Constructor for concrete subclasses to call. */ protected AbstractElementVisitor(){ super(); } } ! @SupportedSourceVersion(RELEASE_13) public static abstract class AbstractTypeVisitor<R, P> extends AbstractTypeVisitor9<R, P> { /** * Constructor for concrete subclasses to call. */ protected AbstractTypeVisitor() { super(); } } ! @SupportedSourceVersion(RELEASE_13) public static class ElementKindVisitor<R, P> extends ElementKindVisitor9<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */
*** 160,170 **** protected ElementKindVisitor(R defaultValue) { super(defaultValue); } } ! @SupportedSourceVersion(RELEASE_12) public static class ElementScanner<R, P> extends ElementScanner9<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */ --- 160,170 ---- protected ElementKindVisitor(R defaultValue) { super(defaultValue); } } ! @SupportedSourceVersion(RELEASE_13) public static class ElementScanner<R, P> extends ElementScanner9<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */
*** 179,189 **** protected ElementScanner(R defaultValue){ super(defaultValue); } } ! @SupportedSourceVersion(RELEASE_12) public static class SimpleAnnotationValueVisitor<R, P> extends SimpleAnnotationValueVisitor9<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */ --- 179,189 ---- protected ElementScanner(R defaultValue){ super(defaultValue); } } ! @SupportedSourceVersion(RELEASE_13) public static class SimpleAnnotationValueVisitor<R, P> extends SimpleAnnotationValueVisitor9<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */
*** 200,210 **** protected SimpleAnnotationValueVisitor(R defaultValue) { super(defaultValue); } } ! @SupportedSourceVersion(RELEASE_12) public static class SimpleElementVisitor<R, P> extends SimpleElementVisitor9<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */ --- 200,210 ---- protected SimpleAnnotationValueVisitor(R defaultValue) { super(defaultValue); } } ! @SupportedSourceVersion(RELEASE_13) public static class SimpleElementVisitor<R, P> extends SimpleElementVisitor9<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */
*** 221,231 **** protected SimpleElementVisitor(R defaultValue){ super(defaultValue); } } ! @SupportedSourceVersion(RELEASE_12) public static class SimpleTypeVisitor<R, P> extends SimpleTypeVisitor9<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */ --- 221,231 ---- protected SimpleElementVisitor(R defaultValue){ super(defaultValue); } } ! @SupportedSourceVersion(RELEASE_13) public static class SimpleTypeVisitor<R, P> extends SimpleTypeVisitor9<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */
*** 242,252 **** protected SimpleTypeVisitor(R defaultValue){ super(defaultValue); } } ! @SupportedSourceVersion(RELEASE_12) public static class TypeKindVisitor<R, P> extends TypeKindVisitor9<R, P> { /** * Constructor for concrete subclasses to call; uses {@code null} * for the default value. */ --- 242,252 ---- protected SimpleTypeVisitor(R defaultValue){ super(defaultValue); } } ! @SupportedSourceVersion(RELEASE_13) public static class TypeKindVisitor<R, P> extends TypeKindVisitor9<R, P> { /** * Constructor for concrete subclasses to call; uses {@code null} * for the default value. */
< prev index next >