[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.platform] Re: Running plugin during Eclipse startup
|
You need to extend the org.eclipse.ui.startup extension point, implementing
org.eclipse.ui.IStartup.
You'll want to keep your footprint small if you're doing this, as you'll be
loaded on every startup. If you need to do a lot of work, put that logic in
another plugin (that extends an extension point defined in your startup
plugin) that your startup plugin can load via createExecutableExtension() if
it's required.
- Jim Tomlinson
"Derek Morris" <dmsubs@xxxxxxxxxxxxxxxxxxxx> wrote in message
news:eki11i$mdl$1@xxxxxxxxxxxxxxxxxxxx
> Hi,
>
> I'm writing a plugin that collects some configuration information from the
> user.
>
> I'd like to automatically run my plugin during Eclipse startup. If it is
> the first run (for this workspace - i.e. there is no saved data for the
> plugin), I'd like to run a Wizard to collect the information.
>
> Is there a way to do this?
>
> Thanks
>
> --
> Derek