jdk/src/share/classes/java/lang/reflect/Parameter.java
changeset 19031 6c9afe6dad33
parent 18775 fa61a37ed42b
child 20506 d826dd5f8e10
equal deleted inserted replaced
19030:32f129cb6351 19031:6c9afe6dad33
   160         return modifiers;
   160         return modifiers;
   161     }
   161     }
   162 
   162 
   163     /**
   163     /**
   164      * Returns the name of the parameter.  If the parameter's name is
   164      * Returns the name of the parameter.  If the parameter's name is
   165      * {@linkplain isNamePresent() present}, then this method returns
   165      * {@linkplain #isNamePresent() present}, then this method returns
   166      * the name provided by the class file. Otherwise, this method
   166      * the name provided by the class file. Otherwise, this method
   167      * synthesizes a name of the form argN, where N is the index of
   167      * synthesizes a name of the form argN, where N is the index of
   168      * the parameter in the descriptor of the method which declares
   168      * the parameter in the descriptor of the method which declares
   169      * the parameter.
   169      * the parameter.
   170      *
   170      *