Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipse-dev] IPlatformRunnable question


There are two IPlatformRunnables.  The old one in the org.eclipse.core.boot package and the new on the org.eclipse.core.runtime package.  They are binary compatible but some people have import statements that import both boot.* and runtime.*.  This confuses the compiler as it does not know how to disambiguate references to IPlatformRunnable.

You need to disabiguate.  I suggest either removing the import of boot.* or explicitly importing only the classes you need from boot.

Jeff



Tom Eicher <eclipse@xxxxxxxxxxxxxxx>
Sent by: eclipse-dev-admin@xxxxxxxxxxx

12/23/2003 10:59 AM

Please respond to
eclipse-dev

To
eclipse-dev@xxxxxxxxxxx
cc
Subject
Re: [eclipse-dev] IPlatformRunnable question





Gerhard de Jager wrote:
> Hi.
>
> When I try to start eclipse (version: eclipse-SDK-I20031209-linux-gtk) -
> I get the following error:

Try again with a milestone release (M6 for example).

-tom

PS: user questions should be asked on the newsgroup at news.eclipse.org

_______________________________________________
eclipse-dev mailing list
eclipse-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
http://dev.eclipse.org/mailman/listinfo/eclipse-dev


Back to the top