Registry / utility / asm-commons

asm-commons

JSON →
library9.9.1javamavenunverified

Useful class adapters based on ASM, a very small and fast Java bytecode manipulation framework.

<dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-commons</artifactId> <version>9.9.1</version> </dependency>
INSTALL
IMPORT
SIG · ASM-COMMONS
A
asm-commons
utilityjavav9.9.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

AdviceAdapter
org.objectweb.asm.commons.AdviceAdapter

Adapt a class using ASM commons

import org.objectweb.asm.ClassReader; import org.objectweb.asm.ClassWriter; import org.objectweb.asm.commons.AdviceAdapter; import org.objectweb.asm.MethodVisitor; public class Main { public static void main(String[] args) throws Exception { ClassReader cr = new ClassReader("java.lang.Object"); ClassWriter cw = new ClassWriter(cr, 0); cr.accept(cw, 0); System.out.println("Class adapted"); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
9.9.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
18 hits · last 30 days
node
16
OpenAI (training)
2
Resources
asm-commons — mvn dependency:get asm-commons · libregistry