Use the active voice in Javadocs.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1142561 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2011-07-04 06:26:45 +00:00
parent 068bb229f2
commit bcdfd12ebc
1 changed files with 19 additions and 19 deletions

View File

@ -59,7 +59,7 @@ public class MethodUtils {
}
/**
* <p>Invoke a named method whose parameter type matches the object type.</p>
* <p>Invokes a named method whose parameter type matches the object type.</p>
*
* <p>This method delegates the method search to {@link #getMatchingAccessibleMethod(Class, String, Class[])}.</p>
*
@ -95,7 +95,7 @@ public class MethodUtils {
}
/**
* <p>Invoke a named method whose parameter type matches the object type.</p>
* <p>Invokes a named method whose parameter type matches the object type.</p>
*
* <p>This method delegates the method search to {@link #getMatchingAccessibleMethod(Class, String, Class[])}.</p>
*
@ -134,7 +134,7 @@ public class MethodUtils {
}
/**
* <p>Invoke a method whose parameter types match exactly the object
* <p>Invokes a method whose parameter types match exactly the object
* types.</p>
*
* <p>This uses reflection to invoke the method obtained from a call to
@ -166,7 +166,7 @@ public class MethodUtils {
}
/**
* <p>Invoke a method whose parameter types match exactly the parameter
* <p>Invokes a method whose parameter types match exactly the parameter
* types given.</p>
*
* <p>This uses reflection to invoke the method obtained from a call to
@ -205,7 +205,7 @@ public class MethodUtils {
}
/**
* <p>Invoke a static method whose parameter types match exactly the parameter
* <p>Invokes a static method whose parameter types match exactly the parameter
* types given.</p>
*
* <p>This uses reflection to invoke the method obtained from a call to
@ -242,7 +242,7 @@ public class MethodUtils {
}
/**
* <p>Invoke a named static method whose parameter type matches the object type.</p>
* <p>Invokes a named static method whose parameter type matches the object type.</p>
*
* <p>This method delegates the method search to {@link #getMatchingAccessibleMethod(Class, String, Class[])}.</p>
*
@ -280,7 +280,7 @@ public class MethodUtils {
}
/**
* <p>Invoke a named static method whose parameter type matches the object type.</p>
* <p>Invokes a named static method whose parameter type matches the object type.</p>
*
* <p>This method delegates the method search to {@link #getMatchingAccessibleMethod(Class, String, Class[])}.</p>
*
@ -321,7 +321,7 @@ public class MethodUtils {
}
/**
* <p>Invoke a static method whose parameter types match exactly the object
* <p>Invokes a static method whose parameter types match exactly the object
* types.</p>
*
* <p>This uses reflection to invoke the method obtained from a call to
@ -353,7 +353,7 @@ public class MethodUtils {
}
/**
* <p>Return an accessible method (that is, one that can be invoked via
* <p>Returns an accessible method (that is, one that can be invoked via
* reflection) with given name and parameters. If no such method
* can be found, return <code>null</code>.
* This is just a convenient wrapper for
@ -375,7 +375,7 @@ public class MethodUtils {
}
/**
* <p>Return an accessible method (that is, one that can be invoked via
* <p>Returns an accessible method (that is, one that can be invoked via
* reflection) that implements the specified Method. If no such method
* can be found, return <code>null</code>.</p>
*
@ -407,7 +407,7 @@ public class MethodUtils {
}
/**
* <p>Return an accessible method (that is, one that can be invoked via
* <p>Returns an accessible method (that is, one that can be invoked via
* reflection) by scanning through the superclasses. If no such method
* can be found, return <code>null</code>.</p>
*
@ -433,7 +433,7 @@ public class MethodUtils {
}
/**
* <p>Return an accessible method (that is, one that can be invoked via
* <p>Returns an accessible method (that is, one that can be invoked via
* reflection) that implements the specified method, by scanning through
* all implemented interfaces and subinterfaces. If no such method
* can be found, return <code>null</code>.</p>
@ -486,7 +486,7 @@ public class MethodUtils {
}
/**
* <p>Find an accessible method that matches the given name and has compatible parameters.
* <p>Finds an accessible method that matches the given name and has compatible parameters.
* Compatible parameters mean that every method parameter is assignable from
* the given parameters.
* In other words, it finds a method with the given name