Very silly question, I am doing a project and I can't think about any workaround I have implemented new functions in an open jar (let's call it converter), I want to modify one of these methods: ExchangeToEuro, ExchangeToDollar, CheckCurrency.
My question is: Are there any mechanism for which I can add functionality (modifying of of these methods or even adding methods to this class) to the class without modifying the jar (without modifying the classes present in the jar)?
I thought about a class decorator, but that wouldn't work as I would need to modify the jar itself.