user6734995
user6734995

Reputation:

Eclipse plugin to run a script at startup

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?

enter image description here

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

Answers (1)

E-Riz
E-Riz

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

Related Questions