MCPcopy Index your code
hub / github.com/apache/tomcat / wrap

Method wrap

java/jakarta/el/Util.java:547–555  ·  view source on GitHub ↗
(Method[] methods, String name)

Source from the content-addressed store, hash-verified

545 private abstract static class Wrapper<T> {
546
547 public static List<Wrapper<Method>> wrap(Method[] methods, String name) {
548 List<Wrapper<Method>> result = new ArrayList<>();
549 for (Method method : methods) {
550 if (method.getName().equals(name)) {
551 result.add(new MethodWrapper(method));
552 }
553 }
554 return result;
555 }
556
557 public static List<Wrapper<Constructor<?>>> wrap(Constructor<?>[] constructors) {
558 List<Wrapper<Constructor<?>>> result = new ArrayList<>();

Callers 15

findMethodMethod · 0.95
findConstructorMethod · 0.95
echoBinaryMessageMethod · 0.45
createAndAddPlayerMethod · 0.45
onOpenMethod · 0.45
doBufferTestMethod · 0.45

Calls 3

equalsMethod · 0.65
getNameMethod · 0.65
addMethod · 0.65