< prev index next >

src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor7.java

Print this page

        

*** 83,109 **** * @see ElementKindVisitor6 * @see ElementKindVisitor8 * @see ElementKindVisitor9 * @since 1.7 */ - @SuppressWarnings("deprecation") // Superclass deprecated @SupportedSourceVersion(RELEASE_7) public class ElementKindVisitor7<R, P> extends ElementKindVisitor6<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */ protected ElementKindVisitor7() { super(null); } /** * Constructor for concrete subclasses; uses the argument for the * default value. * * @param defaultValue the value to assign to {@link #DEFAULT_VALUE} */ protected ElementKindVisitor7(R defaultValue) { super(defaultValue); } /** --- 83,110 ---- * @see ElementKindVisitor6 * @see ElementKindVisitor8 * @see ElementKindVisitor9 * @since 1.7 */ @SupportedSourceVersion(RELEASE_7) public class ElementKindVisitor7<R, P> extends ElementKindVisitor6<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */ + @SuppressWarnings("deprecation") // Superclass constructor deprecated protected ElementKindVisitor7() { super(null); } /** * Constructor for concrete subclasses; uses the argument for the * default value. * * @param defaultValue the value to assign to {@link #DEFAULT_VALUE} */ + @SuppressWarnings("deprecation") // Superclass constructor deprecated protected ElementKindVisitor7(R defaultValue) { super(defaultValue); } /**
< prev index next >