Reputation:
I started with this question.
I know SO is not the place for this, but I cannot find tutorials for dummies on this subject.
Which option should I choose to create a plugin that will just launch a script when eclipse starts?
And after that how can I creare the code to override the earlystartup() so a new thread can be runned?
I just need a hello world into that.
Upvotes: 0
Views: 953
Reputation: 32895
Un-check the option to use a template, you don't need a template just a bare-bones plugin. Then implement the org.eclipse.ui.startup extension point, and in the implementing class launch your "script."
Upvotes: 1