(String asmClassName)
| 323 | } |
| 324 | |
| 325 | private Set<String> getJavaMethods(String asmClassName) { |
| 326 | Set<String> methods = javaMethodListByClassMap.get(asmClassName); |
| 327 | if (methods == null) { |
| 328 | methods = DcdHelper.getJavaMethods(asmClassName); |
| 329 | javaMethodListByClassMap.put(asmClassName, methods); |
| 330 | } |
| 331 | return methods; |
| 332 | } |
| 333 | |
| 334 | Set<String> getAllMethods() { |
| 335 | final Set<String> result = new HashSet<>(); |
no test coverage detected