- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for getPublicMethod (0.1 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java
*/ private static Method getPublicMethod(Method method) { Class<?> clazz = method.getDeclaringClass(); // Short circuit for (hopefully the majority of) cases where the declaring // class is public. if ((clazz.getModifiers() & Modifier.PUBLIC) != 0) { return method; } return getPublicMethod(clazz, method.getName(), method.getParameterTypes());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.5K bytes - Viewed (0)