A utility class responsible for decompiling JVM class files and producing ClassStub objects reflecting their structure.
| Type Params | Return Type | Name and description | 
|---|---|---|
|  | static ClassStub | parseClass(URL url)Loads the URL contents and parses them with ASM, producing a ClassStub object representing the structure of the corresponding class file. | 
Loads the URL contents and parses them with ASM, producing a ClassStub object representing the structure of the corresponding class file. Stubs are cached and reused if queried several times with equal URLs.
url -  an URL from a class loader, most likely a file system file or a JAR entry.