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

Print this page




  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  22  * CA 95054 USA or visit www.sun.com if you need additional information or
  23  * have any questions.
  24  */
  25 
  26 package com.sun.mirror.type;
  27 
  28 
  29 /**
  30  * Represents a reference type.
  31  * These include class and interface types, array types, and type variables.
  32  *





  33  * @author Joseph D. Darcy
  34  * @author Scott Seligman
  35  * @since 1.5
  36  */
  37 

  38 public interface ReferenceType extends TypeMirror {
  39 }


  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  22  * CA 95054 USA or visit www.sun.com if you need additional information or
  23  * have any questions.
  24  */
  25 
  26 package com.sun.mirror.type;
  27 
  28 
  29 /**
  30  * Represents a reference type.
  31  * These include class and interface types, array types, and type variables.
  32  *
  33  * @deprecated All components of this API have been superseded by the
  34  * standardized annotation processing API.  The replacement for the
  35  * functionality of this interface is {@link
  36  * javax.lang.model.type.ReferenceType}.
  37  *
  38  * @author Joseph D. Darcy
  39  * @author Scott Seligman
  40  * @since 1.5
  41  */
  42 @Deprecated
  43 @SuppressWarnings("deprecation")
  44 public interface ReferenceType extends TypeMirror {
  45 }