I would like to do following:
Create a own Eclipse Plugin, that (for example) just has one method "sayHello" that displays a message "hello world".
so for so good.
But now I want to let the users, that have my plugin installed, call this method from their java code. something like that:
//[...]
org.jjoe64.my_eclipse_plugin.Plugin.sayHello(); // of course this won't work...
//[...]
has anybody an idea how to do this? I think it's a little bit more complicate ...