src/share/classes/java/lang/reflect/Member.java

Print this page

        

@@ -40,18 +40,16 @@
 interface Member {
 
     /**
      * Identifies the set of all public members of a class or interface,
      * including inherited members.
-     * @see java.lang.SecurityManager#checkMemberAccess
      */
     public static final int PUBLIC = 0;
 
     /**
      * Identifies the set of declared members of a class or interface.
      * Inherited members are not included.
-     * @see java.lang.SecurityManager#checkMemberAccess
      */
     public static final int DECLARED = 1;
 
     /**
      * Returns the Class object representing the class or interface