How can i activate my plugin on loading Eclipse IDE [message #87080] |
Wed, 02 July 2003 00:40  |
Eclipse User |
|
|
|
Hi,
I like to load my plugin as soon as the Eclipse IDE is loaded how can i do
that. Currently i am able to activate the plugin when ever i come across a
plugin point like menu, toolbar or some property pages. But i need to
activate as soon as the Eclipse IDE is loaded.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: How can i activate my plugin on loading Eclipse IDE [message #96606 is a reply to message #96148] |
Fri, 18 July 2003 11:13   |
Eclipse User |
|
|
|
Originally posted by: richkulp.NOSPAM.us.ibm.com
Did you read the article listed in the append?
A builder is attached to a project. Every time any resource in the
project changes, the builder is told of the changes and gets to do builds.
For example, the java compiler is a builder. Whenever changes are made
the java builder for the project is run. It sees what was changed,
recompiles those java files, sees what other java files may be affected
and needs to be recompiled, and recompiles those.
For your case, your builder could be told what java files where added,
changed, or deleted, for a project, and so you can then go and modify
your UML files.
Rich
|
|
|
Re: How can i activate my plugin on loading Eclipse IDE [message #96651 is a reply to message #96606] |
Fri, 18 July 2003 12:06  |
Eclipse User |
|
|
|
Originally posted by: richkulp.NOSPAM.us.ibm.com
In addition the advantage of the builder is that you don't need to
specifically activate your plugin, you don't need to specifically add
and remove yourself as resource change listeners. The builder concept
handles this for you.
Rich
|
|
|
Powered by
FUDForum. Page generated in 0.05643 seconds