src/share/classes/com/sun/mirror/declaration/InterfaceDeclaration.java

Print this page

        

@@ -38,14 +38,20 @@
  * <p> While an <tt>InterfaceDeclaration</tt> represents the
  * <i>declaration</i> of an interface, an {@link InterfaceType}
  * represents an interface <i>type</i>.
  * See {@link TypeDeclaration} for more on this distinction.
  *
+ * @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.element.TypeElement}.
+ *
  * @author Joseph D. Darcy
  * @author Scott Seligman
  *
  * @see InterfaceType
  * @since 1.5
  */
-
+@Deprecated
+@SuppressWarnings("deprecation")
 public interface InterfaceDeclaration extends TypeDeclaration {
 }