@param name Class name. @return org.objectweb.asm.ClassReader for the given class.
(String name)
| 339 | * @return {@link org.objectweb.asm.ClassReader} for the given class. |
| 340 | */ |
| 341 | public ClassReader getClassReader(String name) { |
| 342 | byte[] ret = getRawClass(name); |
| 343 | if(ret != null) |
| 344 | return new ClassReader(ret); |
| 345 | return null; |
| 346 | } |
| 347 | |
| 348 | /** |
| 349 | * @param flags |
no test coverage detected