Misc Javadoc fixes.

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

View File

@ -67,7 +67,7 @@ && isPackageAccess(m.getDeclaringClass().getModifiers())) {
}
/**
* Learn whether a given set of modifiers implies package access.
* Returns whether a given set of modifiers implies package access.
* @param modifiers to test
* @return true unless package/protected/private modifier detected
*/
@ -76,7 +76,7 @@ static boolean isPackageAccess(int modifiers) {
}
/**
* Check a Member for basic accessibility.
* Returns whether a Member is accessible.
* @param m Member to check
* @return true if <code>m</code> is accessible
*/
@ -85,7 +85,7 @@ static boolean isAccessible(Member m) {
}
/**
* Compare the relative fitness of two sets of parameter types in terms of
* Compares the relative fitness of two sets of parameter types in terms of
* matching a third set of runtime parameter types, such that a list ordered
* by the results of the comparison would return the best match first
* (least).
@ -157,7 +157,7 @@ private static float getObjectTransformationCost(Class<?> srcClass, Class<?> des
}
/**
* Get the number of steps required to promote a primitive number to another
* Gets the number of steps required to promote a primitive number to another
* type.
* @param srcClass the (primitive) source class
* @param destClass the (primitive) destination class