I'm would like to make a Minecraft plugin that replaces methods in other plugins with ones in the plugin, for easy customization of the plugins.

Is there any way to simply replace a method of one class with one of another? Kinda like using @override, however it overrides the original method as well.

link|improve this question
Kinda like using @override????????? you override does replace it . Give us a code example even if it does not compile to see what exactly are you asking. – Shahzeb Feb 16 at 4:03
What about BCEL? – Ryan Amos Mar 21 at 1:29
feedback

1 Answer

You can do this with an aspect-oriented framework like AspectJ, by advising around the method calls on the class you want to override, and invoking your new method.

link|improve this answer
How would I go about doing that? I'm about intermediate level in Java, I'm still learning. :/ – CharDev Feb 16 at 4:18
Hmmm, aspects might be a little much if your at intermediate level. I'll see if I can whip up a sample. In the meantime, maybe you can describe your issue in more detail, as there are possibly other solutions to it. – Perception Feb 16 at 4:30
Basically I just want to put a piece of code in a method of another class/jar/plugin without directly modifying the plugin. I basically just want it to load the first plugin, then load the second plugin, and one of the methods in the second plugin "overlaps" a method on the first plugin. When the method from the first plugin is called, it instead uses the method from the second plugin. I tried to be as descriptive as possible, if I'm still not clear I can explain more. :p – CharDev Feb 16 at 4:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.