< prev index next >

src/java.base/share/classes/java/lang/reflect/Method.java

Print this page

        

@@ -434,14 +434,15 @@
         sb.append(')');
         return sb.toString();
     }
 
     /**
-     * Returns a string describing this {@code Method}, including
-     * type parameters.  The string is formatted as the method access
+     * Returns a string describing this {@code Method}, including type
+     * parameters.  The string is formatted as the method access
      * modifiers, if any, followed by an angle-bracketed
      * comma-separated list of the method's type parameters, if any,
+     * including informative bounds of the type parameters, if any,
      * followed by the method's generic return type, followed by a
      * space, followed by the class declaring the method, followed by
      * a period, followed by the method name, followed by a
      * parenthesized, comma-separated list of the method's generic
      * formal parameter types.
< prev index next >