MCPcopy Create free account
hub / github.com/beanshell/beanshell / getMethodDescriptor

Method getMethodDescriptor

src/bsh/ClassGeneratorUtil.java:549–556  ·  view source on GitHub ↗
(String returnType, String[] paramTypes)

Source from the content-addressed store, hash-verified

547
548
549 private static String getMethodDescriptor(String returnType, String[] paramTypes) {
550 StringBuilder sb = new StringBuilder("(");
551 for (String paramType : paramTypes) {
552 sb.append(paramType);
553 }
554 sb.append(')').append(returnType);
555 return sb.toString();
556 }
557
558
559 /**

Callers 4

generateMethodMethod · 0.95
generateConstructorMethod · 0.95
doSwitchBranchMethod · 0.95

Calls 2

appendMethod · 0.80
toStringMethod · 0.45

Tested by

no test coverage detected