Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cross-project-issues-dev] Europa impressions (screenshots)

If there is no other way to do this, consider putting the code that is run at startup into a separate package so that it can be marked to not cause bundle activation. One example of this can be found in the manifest of org.eclipse.ui.intro.universal :

Eclipse-LazyStart: true; exceptions="org.eclipse.ui.internal.intro.universal.contentdetect"

You have to be careful not to reference classes from other packages in that code though.

Boris

On 6/1/07, Thomas Hallgren <thomas@xxxxxxx> wrote:
We use eager startup in order to initialize custom URL protocol
handlers. We have not found any other way to do that. Tell me how and
I'll change it promptly.

Regards,
Thomas Hallgren

Boris Bokowski wrote:
> Interesting.  I see that Buckminster and Monkey still contribute a
> top-level menu for every perspective, with only a few items.  There
> must be a better place for you to place your actions, don't you think?
> For example, in the case of Eclipse Monkey, have you considered using
> the New or Import wizard infrastructure?
>
> Also, for those who register early startup runnables: Why do you have
> to do this eagerly?  You are causing unnecessary long startup times.
>
> Boris
>
> On 6/1/07, * Pascal Rapicault* <Pascal_Rapicault@xxxxxxxxxx
> <mailto:Pascal_Rapicault@xxxxxxxxxx >> wrote:
>
>
>     (See attached file: europa resource perspective.JPG)(See attached
>     file:
>     early startup.JPG)
>     _______________________________________________
>     cross-project-issues-dev mailing list
>     cross-project-issues-dev@xxxxxxxxxxx
>     <mailto: cross-project-issues-dev@xxxxxxxxxxx>
>     https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev
>
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> cross-project-issues-dev mailing list
> cross-project-issues-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev
>

_______________________________________________
cross-project-issues-dev mailing list
cross-project-issues-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Back to the top