ASM and Javassist seem to have different advantages and shortcomings for generating/transforming Java bytecode. For example, the byte code generation facility of Javassist is really easy to use since it is as simple as generating your program in a string and compile it on the fly. However, sometimes the visitor approach of ASM seems more convenient for other kind of tasks (e.g., such as translating a Java routine to another language).
Is it possible to use both libraries in the same Java project so I could profit from the most convenient library according to the requirements of each different scenario ?. Any special consideration to keep in mind ?. I have the intuition that I cannot use both libraries for manipulating the byte code of the same class, but maybe even that is possible ?.