In the javassist API it seems there is no direct way to add anything by hand in the CodeAttribute property.
Given this example:
CtMethod m;
m.getMethodInfo().getCodeAttribute().setAttribute(???);
this seems to be the only way to alter attributes. But, neither is possible to retrieve the original attributes and modify them (it returns a list od AttributeInfo), nor a public constructor exists for StackMapTable, which seems to be the only accepted input.
Anyone knows how to do something like this?
The CodeAttribute object is responsible for holding the bytecode that represents the method flow. You can use it to iterate the bytecode that represents the method logic.
This basically means that it represents the compiled method itself. I know you can use this object to manually modify the bytecode itself for example deleting all the instruction between two lines:
However this could be really tricky and can get out of hands quite easily. What I suggest to do is to just create a new CodeAttribute rom scratch and substitute it into you method in order to avoid unplesant surprises:
However thi method also may be quite risky since you are handling directly bytecode. Probably the best would be just to delete your method and add a new one with your logic instead.