src/share/classes/com/sun/mirror/type/VoidType.java

Print this page

        

*** 33,43 **** * A pseudo-type representing the type of <tt>void</tt>. * * @author Joseph D. Darcy * @author Scott Seligman * * @see MethodDeclaration#getReturnType() * @since 1.5 */ ! public interface VoidType extends TypeMirror { } --- 33,49 ---- * A pseudo-type representing the type of <tt>void</tt>. * * @author Joseph D. Darcy * @author Scott Seligman * + * @deprecated All components of this API have been superseded by the + * standardized annotation processing API. The replacement for the + * functionality of this interface is included in {@link + * javax.lang.model.type.NoType}. + * * @see MethodDeclaration#getReturnType() * @since 1.5 */ ! @Deprecated ! @SuppressWarnings("deprecation") public interface VoidType extends TypeMirror { }