Page 1 of 4

Eclipse & Java SWING class Failure

PostPosted: 29 Dec 2008, 13:03
by Taellik
I have a recently purchased PS3 with YDL 6.1 pre-installed by Terra, I installed the ECLIPSE IDE and when I try to do a simple "Hello World" Java program using a GUI JOPtionPane message box to display the text ... well, nothing shows up on program execution !

YDL 6.1 ECLIPSE/JAVA works fine writing a console application, but the JAVA swing GUI features don't seem to work in YDL 6.1 There are no syntax errors, all necessary packages/classes are included.

Anyone been able to get JAVA's swing GUI package classes to display at program execution ?

Taellik

Re: Eclipse & Java SWING class Failure

PostPosted: 29 Dec 2008, 15:36
by billb
Paul (ppietro) here is good with Java issues ... hopefully he'll spot this topic and jump in. I'm guessing you may need to install IBM's Java and use that instead.

This post may help you with installing IBM's Java and setting that up:

viewtopic.php?p=19689#p19689

Re: Eclipse & Java SWING class Failure

PostPosted: 29 Dec 2008, 16:21
by Taellik
Thanks for the info / referral !

Taellik

Re: Eclipse & Java SWING class Failure

PostPosted: 30 Dec 2008, 09:19
by ppietro
billb wrote:Paul (ppietro) here is good with Java issues ... hopefully he'll spot this topic and jump in. I'm guessing you may need to install IBM's Java and use that instead.

This post may help you with installing IBM's Java and setting that up:

viewtopic.php?p=19689#p19689


Yup - I'd try IBM's Java first.

You may need to create a symbolic link to /usr/local/bin so that IBM's Java is encountered first, instead of the open source GCJ. I can help with that if necessary.

Cheers,
Paul

Re: Eclipse & Java SWING class Failure

PostPosted: 30 Dec 2008, 12:44
by Taellik
Yup - I'd try IBM's Java first.

You may need to create a symbolic link to /usr/local/bin so that IBM's Java is encountered first, instead of the open source GCJ. I can help with that if necessary.

Cheers,
Paul


Hiya Paul,

Thanks for the suggestion...I'll head off to the IBM site to try to get & install that flavor of Java and see how it works out.

Taellik

Re: Eclipse & Java SWING class Failure

PostPosted: 31 Dec 2008, 14:01
by Taellik
Hiya Paul,

Tried out your suggestion...no love there. Eclipse shows no syntax errors with the source code, external packages/classes. However, on execution the "focus" leaves the Eclipse IDE ( bar grey'd out as if something is happening ) but the programmed "Hello Wold" message box GUI does not show up on the desktop.

The same source works successfully when copied & run on a Windows ( Gasp ! ) Eclipse/Java box.

I'm stumped why console mode works, but the GUI classes fail . . . .

Could it be that the E17 Desktop GUI I currently run with does not support the Java Swing GUI classes, and I need to switch desktops to more "traditional" Linux one like GNOME or KDE ??

Taellik

Re: Eclipse & Java SWING class Failure

PostPosted: 01 Jan 2009, 00:58
by ppietro
Taellik wrote:Hiya Paul,

Tried out your suggestion...no love there. Eclipse shows no syntax errors with the source code, external packages/classes. However, on execution the "focus" leaves the Eclipse IDE ( bar grey'd out as if something is happening ) but the programmed "Hello Wold" message box GUI does not show up on the desktop.

The same source works successfully when copied & run on a Windows ( Gasp ! ) Eclipse/Java box.

I'm stumped why console mode works, but the GUI classes fail . . . .

Could it be that the E17 Desktop GUI I currently run with does not support the Java Swing GUI classes, and I need to switch desktops to more "traditional" Linux one like GNOME or KDE ??

Taellik


It's probably an Eclipse configuration issue. (Personally, I always use NetBeans for my Java swing development, but that's of no use to us here. :D)

Go ahead and paste your sample Java code here, and let me try dusting off my Eclipse skills and see what's up.

By the way - installing the IBM Java does not automatically make Eclipse use it. Eclipse will use whichever Java virtual machine is listed from the output of the which java command, and IBM's Java will not overwrite the GCJ Java in /usr/bin. (They follow System V Unix conventions, and install in /opt)

That's why I have to create a symbolic link between the IBM "java" binary executable and /usr/local/bin so that it's encountered first.

Cheers,
Paul

Re: Eclipse & Java SWING class Failure

PostPosted: 02 Jan 2009, 21:55
by Taellik
Hiya Paul,

I registered / downloaded the Java 6 version 6 release of Java from IBM as outlined in the "stickie" How To Install JAVA plugin for Firefox, however, the install instructions differ from screen options for the E17 desktop of ydl. According to instal instructions, you do a System-Install-Packages, however, on the screen the option is Applications-System-Software Tools-Add/Remove Software then the SU password challenge and then the Package Manager. Whew, now the confusing part....the IBM download doesn't show up when doing a search...is there some keyword that is needed to find it?

Also, how do you do that pseudo-reference you mentioned to fool Eclipse to go after the IBM version instead of the gcc version ?

Taellik
http://www.geocities.com/chainpunch

Re: Eclipse & Java SWING class Failure

PostPosted: 02 Jan 2009, 22:04
by Taellik
Hiya Paul,

Think I figured out the IBM Java download/install ( that or I have really hosed myself ! :oops: ) I did a double-click on the icon for the download on the desktop and got a dialog box saying the IBM install was successful - crossed fingers !

How do you do the substitution for using the IBM version instead of the gcc ?

In Eclipse, I have Java compatibility currently set at 6, and the JRE System Library is java-1.4.2-gc for the source package container.

Taellik
http://www.geocities.com/chainpunch

Re: Eclipse & Java SWING class Failure

PostPosted: 03 Jan 2009, 00:11
by Taellik
Paul,

Did some research here on the board and found the info about creating symbolic link. I logged in as root user and typed the following :
ln -s /opt/ibm/java-ppc-60/jre/bin/java /usr/local/bin
I logged out & then back in as regular user, now Eclipse will not start up at all !

Do I have to uninstall Eclipse & then re-install it so it's talking to the IBM Java 6 version ?

Taellik
http://www.geocities.com/chainpunch

Re: Eclipse & Java SWING class Failure

PostPosted: 03 Jan 2009, 01:13
by ppietro
Taellik wrote:Did some research here on the board and found the info about creating symbolic link. I logged in as root user and typed the following :
ln -s /opt/ibm/java-ppc-60/jre/bin/java /usr/local/bin
I logged out & then back in as regular user, now Eclipse will not start up at all !


Hmm - that's odd.

Do I have to uninstall Eclipse & then re-install it so it's talking to the IBM Java 6 version ?


No - you shouldn't have to do that.

What is the output of these two commands from a terminal window?

which java

and

java -version

As for the Eclipse error, you might need to reset your settings and try again - you shouldn't have to reinstall though. As a caveat - I use IBM's Java 5.0 for most of my dev work. It's an old developer habit of mine - use the oldest Java you can get away with. (Plus, Java 5.0 has a smaller memory footprint - which is useful on the PS3.) I'll try installing 6.0 and see if I have any Eclipse issues with that.

Cheers,
Paul

Re: Eclipse & Java SWING class Failure

PostPosted: 03 Jan 2009, 01:54
by Taellik
Here's the results I get when in Terminal....

[greg@localhost ~]$ which java
/usr/local/bin/java
[greg@localhost ~]$ java -version
java version "1.6.0"
Java(TM) SE Runtime Environment (build pxp3260sr3-20081106_07(SR3))
IBM J9 VM (build 2.4, J2RE 1.6.0 IBM J9 2.4 Linux ppc-32 jvmxp3260-20081105_25433 (JIT enabled, AOT enabled)
J9VM - 20081105_025433_bHdSMr
JIT - r9_20081031_1330
GC - 20081027_AB)
JCL - 20081106_01
[greg@localhost ~]$

The which java looks whacked but dunno why it is.....

Since Eclipse is java-based...it no longer will start up to change any settings.

Taellik
http://www.geocities.com/chainpunch

Re: Eclipse & Java SWING class Failure

PostPosted: 03 Jan 2009, 06:43
by ppietro
Taellik wrote:Here's the results I get when in Terminal....
The which java looks whacked but dunno why it is.....


They're not - they're exactly the results I was looking for. They all seem correct to me.

Since Eclipse is java-based...it no longer will start up to change any settings.


Yeah - you might have to blow away the settings file to start it. Hold tight - I'm setting up my PS3 now. It's been a while.

Cheers,
Paul

Re: Eclipse & Java SWING class Failure

PostPosted: 03 Jan 2009, 12:33
by Taellik
Does it matter any how I was logged in when installing the Java 6 from IBM ?

I double-clicked/installed the downloaded rpm file while logged in under a user account not the root user / su login.

Taellik
http://www.geocities.com/chainpunch

Re: Eclipse & Java SWING class Failure

PostPosted: 03 Jan 2009, 14:40
by Taellik
Paul,

Here' the log file dump I get when Eclipse crashes on start-up . . . .
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

!SESSION 2009-01-03 08:28:13.199 -----------------------------------------------
eclipse.buildId=M20070212-1330
java.fullversion=J2RE 1.6.0 IBM J9 2.4 Linux ppc-32 jvmxp3260-20081105_25433 (JIT enabled, AOT enabled)
J9VM - 20081105_025433_bHdSMr
JIT - r9_20081031_1330
GC - 20081027_AB
BootLoader constants: OS=linux, ARCH=ppc, WS=gtk, NL=en_US
Command-line arguments: -os linux -ws gtk -arch ppc

!ENTRY org.eclipse.update.configurator 2009-01-03 08:28:18.552
!MESSAGE Plugin does not have a valid identifier: plugins/org.eclipse.update.ui_3.2.2.R32x_v20070111.jar

!ENTRY org.eclipse.update.configurator 2009-01-03 08:28:18.554
!MESSAGE Plugin does not have a valid version: plugins/org.eclipse.update.ui_3.2.2.R32x_v20070111.jar

!ENTRY org.eclipse.osgi 4 0 2009-01-03 08:28:26.367
!MESSAGE Application error
!STACK 1
java.lang.RuntimeException: Application "org.eclipse.ui.ide.workbench" could not be found in the registry. The applications available are: org.eclipse.ant.core.antRunner, org.eclipse.help.base.infocenterApplication, org.eclipse.help.base.helpApplication, org.eclipse.help.base.indexTool, org.eclipse.equinox.initializer.configInitializer, org.eclipse.jdt.core.JavaCodeFormatter, org.eclipse.update.core.standaloneUpdate, org.eclipse.update.core.siteOptimizer.
at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:68)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:45)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
at java.lang.reflect.Method.invoke(Method.java:599)
at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
at org.eclipse.core.launcher.Main.run(Main.java:977)
at org.eclipse.core.launcher.Main.main(Main.java:952)

!ENTRY org.eclipse.osgi 2 0 2009-01-03 08:28:26.794
!MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.794
!MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core_3.2.2.M20061205.jar was not resolved.
!SUBENTRY 2 org.eclipse.team.cvs.core 2 0 2009-01-03 08:28:26.796
!MESSAGE Missing required bundle com.jcraft.jsch_[0.1.27,2.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.797
!MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2_3.2.1.M20061205.jar was not resolved.
!SUBENTRY 2 org.eclipse.team.cvs.ssh2 2 0 2009-01-03 08:28:26.797
!MESSAGE Missing required bundle com.jcraft.jsch_[0.1.18,2.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.798
!MESSAGE Bundle update@plugins/org.eclipse.update.scheduler_3.2.2.R32x_v20061214.jar was not resolved.
!SUBENTRY 2 org.eclipse.update.scheduler 2 0 2009-01-03 08:28:26.798
!MESSAGE Missing required bundle org.eclipse.update.ui_[3.1.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.801
!MESSAGE Bundle update@plugins/org.eclipse.ui.ide_3.2.1.M20060915-1030.jar was not resolved.
!SUBENTRY 2 org.eclipse.ui.ide 2 0 2009-01-03 08:28:26.801
!MESSAGE Missing required bundle org.eclipse.update.ui_[3.1.100,4.0.0).

!ENTRY org.eclipse.osgi 2 0 2009-01-03 08:28:26.905
!MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.906
!MESSAGE Bundle update@plugins/org.eclipse.ui.externaltools_3.1.101.r321_v20060802.jar [17] was not resolved.
!SUBENTRY 2 org.eclipse.ui.externaltools 2 0 2009-01-03 08:28:26.906
!MESSAGE Missing optionally required bundle org.eclipse.ui.ide_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.ui.externaltools 2 0 2009-01-03 08:28:26.907
!MESSAGE Missing required bundle org.eclipse.debug.ui_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.907
!MESSAGE Bundle update@plugins/org.eclipse.jdt.ui_3.2.2.r322_v20070124.jar [37] was not resolved.
!SUBENTRY 2 org.eclipse.jdt.ui 2 0 2009-01-03 08:28:26.908
!MESSAGE Missing required bundle org.eclipse.search_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.ui 2 0 2009-01-03 08:28:26.908
!MESSAGE Missing required bundle org.eclipse.debug.ui_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.ui 2 0 2009-01-03 08:28:26.908
!MESSAGE Missing required bundle org.eclipse.compare_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.ui 2 0 2009-01-03 08:28:26.909
!MESSAGE Missing required bundle org.eclipse.team.ui_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.ui 2 0 2009-01-03 08:28:26.909
!MESSAGE Missing required bundle org.eclipse.ui.ide_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.ui 2 0 2009-01-03 08:28:26.910
!MESSAGE Missing required bundle org.eclipse.ui.editors_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.ui 2 0 2009-01-03 08:28:26.910
!MESSAGE Missing required bundle org.eclipse.ltk.ui.refactoring_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.911
!MESSAGE Bundle update@plugins/org.eclipse.update.scheduler_3.2.2.R32x_v20061214.jar [39] was not resolved.
!SUBENTRY 2 org.eclipse.update.scheduler 2 0 2009-01-03 08:28:26.911
!MESSAGE Missing required bundle org.eclipse.update.ui_[3.1.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.911
!MESSAGE Bundle update@plugins/org.eclipse.compare_3.2.1.M20060711.jar [41] was not resolved.
!SUBENTRY 2 org.eclipse.compare 2 0 2009-01-03 08:28:26.912
!MESSAGE Missing required bundle org.eclipse.ui.ide_[3.1.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.912
!MESSAGE Bundle update@plugins/org.eclipse.ltk.ui.refactoring_3.2.2.r322_v20070124.jar [44] was not resolved.
!SUBENTRY 2 org.eclipse.ltk.ui.refactoring 2 0 2009-01-03 08:28:26.913
!MESSAGE Missing required bundle org.eclipse.compare_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.ltk.ui.refactoring 2 0 2009-01-03 08:28:26.913
!MESSAGE Missing required bundle org.eclipse.team.ui_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.914
!MESSAGE Bundle update@plugins/org.eclipse.ui.navigator.resources_3.2.1.M20060906-0800b.jar [63] was not resolved.
!SUBENTRY 2 org.eclipse.ui.navigator.resources 2 0 2009-01-03 08:28:26.914
!MESSAGE Missing required bundle org.eclipse.ui.ide_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.914
!MESSAGE Bundle update@plugins/org.eclipse.debug.ui_3.2.2.r322_v20070202.jar [74] was not resolved.
!SUBENTRY 2 org.eclipse.debug.ui 2 0 2009-01-03 08:28:26.915
!MESSAGE Missing required bundle org.eclipse.ui.ide_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.debug.ui 2 0 2009-01-03 08:28:26.915
!MESSAGE Missing required bundle org.eclipse.ui.editors_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.916
!MESSAGE Bundle update@plugins/org.eclipse.ui.ide_3.2.1.M20060915-1030.jar [80] was not resolved.
!SUBENTRY 2 org.eclipse.ui.ide 2 0 2009-01-03 08:28:26.916
!MESSAGE Missing required bundle org.eclipse.update.ui_[3.1.100,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.917
!MESSAGE Bundle update@plugins/org.eclipse.ant.ui_3.2.1.r321_v20060828.jar [84] was not resolved.
!SUBENTRY 2 org.eclipse.ant.ui 2 0 2009-01-03 08:28:26.917
!MESSAGE Missing optionally required bundle org.eclipse.ui.ide_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.ant.ui 2 0 2009-01-03 08:28:26.918
!MESSAGE Missing optionally required bundle org.eclipse.ui.editors_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.ant.ui 2 0 2009-01-03 08:28:26.918
!MESSAGE Missing required bundle org.eclipse.ui.externaltools_[3.1.0,4.0.0).
!SUBENTRY 2 org.eclipse.ant.ui 2 0 2009-01-03 08:28:26.919
!MESSAGE Missing required bundle org.eclipse.debug.ui_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.ant.ui 2 0 2009-01-03 08:28:26.919
!MESSAGE Missing required bundle org.eclipse.jdt.ui_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.ant.ui 2 0 2009-01-03 08:28:26.919
!MESSAGE Missing required bundle org.eclipse.jdt.debug.ui_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.920
!MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ui_3.2.2.M20061121.jar [85] was not resolved.
!SUBENTRY 2 org.eclipse.team.cvs.ui 2 0 2009-01-03 08:28:26.920
!MESSAGE Missing optionally required bundle org.eclipse.ui.ide_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.team.cvs.ui 2 0 2009-01-03 08:28:26.921
!MESSAGE Missing optionally required bundle org.eclipse.ui.editors_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.team.cvs.ui 2 0 2009-01-03 08:28:26.921
!MESSAGE Missing required bundle org.eclipse.team.ui_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.team.cvs.ui 2 0 2009-01-03 08:28:26.922
!MESSAGE Missing required bundle org.eclipse.team.cvs.core_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.team.cvs.ui 2 0 2009-01-03 08:28:26.922
!MESSAGE Missing required bundle org.eclipse.compare_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.team.cvs.ui 2 0 2009-01-03 08:28:26.923
!MESSAGE Missing required bundle org.eclipse.ui.navigator.resources_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.923
!MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh_3.2.1.M20061205.jar [90] was not resolved.
!SUBENTRY 2 org.eclipse.team.cvs.ssh 2 0 2009-01-03 08:28:26.923
!MESSAGE Missing required bundle org.eclipse.team.cvs.core_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.924
!MESSAGE Bundle update@plugins/org.eclipse.ui.editors_3.2.1.r321_v20060721.jar [91] was not resolved.
!SUBENTRY 2 org.eclipse.ui.editors 2 0 2009-01-03 08:28:26.924
!MESSAGE Missing required bundle org.eclipse.ui.ide_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.925
!MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2_3.2.1.M20061205.jar [93] was not resolved.
!SUBENTRY 2 org.eclipse.team.cvs.ssh2 2 0 2009-01-03 08:28:26.925
!MESSAGE Missing required bundle org.eclipse.team.cvs.core_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.team.cvs.ssh2 2 0 2009-01-03 08:28:26.926
!MESSAGE Missing required bundle org.eclipse.team.cvs.ssh_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.team.cvs.ssh2 2 0 2009-01-03 08:28:26.926
!MESSAGE Missing required bundle org.eclipse.team.ui_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.team.cvs.ssh2 2 0 2009-01-03 08:28:26.926
!MESSAGE Missing required bundle com.jcraft.jsch_[0.1.18,2.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.927
!MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core_3.2.2.M20061205.jar [94] was not resolved.
!SUBENTRY 2 org.eclipse.team.cvs.core 2 0 2009-01-03 08:28:26.927
!MESSAGE Missing required bundle com.jcraft.jsch_[0.1.27,2.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.928
!MESSAGE Bundle update@plugins/org.eclipse.jdt.debug.ui_3.2.2.r322_v20061205.jar [102] was not resolved.
!SUBENTRY 2 org.eclipse.jdt.debug.ui 2 0 2009-01-03 08:28:26.928
!MESSAGE Missing required bundle org.eclipse.ui.ide_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.debug.ui 2 0 2009-01-03 08:28:26.929
!MESSAGE Missing required bundle org.eclipse.ui.editors_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.debug.ui 2 0 2009-01-03 08:28:26.929
!MESSAGE Missing required bundle org.eclipse.debug.ui_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.debug.ui 2 0 2009-01-03 08:28:26.930
!MESSAGE Missing required bundle org.eclipse.jdt.ui_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.930
!MESSAGE Bundle update@plugins/org.eclipse.search_3.2.1.r321_v20060726.jar [103] was not resolved.
!SUBENTRY 2 org.eclipse.search 2 0 2009-01-03 08:28:26.931
!MESSAGE Missing required bundle org.eclipse.ui.ide_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.943
!MESSAGE Bundle update@plugins/org.eclipse.team.ui_3.2.1.M200608151725.jar [105] was not resolved.
!SUBENTRY 2 org.eclipse.team.ui 2 0 2009-01-03 08:28:26.944
!MESSAGE Missing optionally required bundle org.eclipse.ui.ide_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.team.ui 2 0 2009-01-03 08:28:26.945
!MESSAGE Missing required bundle org.eclipse.compare_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.team.ui 2 0 2009-01-03 08:28:26.945
!MESSAGE Missing required bundle org.eclipse.ui.navigator.resources_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.946
!MESSAGE Bundle update@plugins/org.eclipse.jdt.junit_3.2.1.r321_v20060810/ [107] was not resolved.
!SUBENTRY 2 org.eclipse.jdt.junit 2 0 2009-01-03 08:28:26.946
!MESSAGE Missing required bundle org.eclipse.ui.ide_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.junit 2 0 2009-01-03 08:28:26.947
!MESSAGE Missing required bundle org.eclipse.ui.editors_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.junit 2 0 2009-01-03 08:28:26.947
!MESSAGE Missing required bundle org.eclipse.debug.ui_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.junit 2 0 2009-01-03 08:28:26.948
!MESSAGE Missing required bundle org.eclipse.jdt.ui_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.junit 2 0 2009-01-03 08:28:26.948
!MESSAGE Missing required bundle org.eclipse.jdt.debug.ui_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.jdt.junit 2 0 2009-01-03 08:28:26.948
!MESSAGE Missing required bundle org.eclipse.compare_[3.2.0,4.0.0).
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.949
!MESSAGE Bundle update@plugins/org.eclipse.cdt.refactoring_3.1.2.200710251705.jar [110] was not resolved.
!SUBENTRY 2 org.eclipse.cdt.refactoring 2 0 2009-01-03 08:28:26.949
!MESSAGE Missing required bundle org.eclipse.ui.ide_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.refactoring 2 0 2009-01-03 08:28:26.950
!MESSAGE Missing required bundle org.eclipse.ltk.ui.refactoring_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.refactoring 2 0 2009-01-03 08:28:26.950
!MESSAGE Missing required bundle org.eclipse.search_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.951
!MESSAGE Bundle update@plugins/com.redhat.eclipse.cdt.autotools_0.0.8.1.jar [115] was not resolved.
!SUBENTRY 2 com.redhat.eclipse.cdt.autotools 2 0 2009-01-03 08:28:26.951
!MESSAGE Missing required bundle org.eclipse.ui.editors_0.0.0.
!SUBENTRY 2 com.redhat.eclipse.cdt.autotools 2 0 2009-01-03 08:28:26.952
!MESSAGE Missing required bundle org.eclipse.ui.ide_0.0.0.
!SUBENTRY 2 com.redhat.eclipse.cdt.autotools 2 0 2009-01-03 08:28:26.952
!MESSAGE Missing required bundle org.eclipse.cdt.ui_0.0.0.
!SUBENTRY 2 com.redhat.eclipse.cdt.autotools 2 0 2009-01-03 08:28:26.953
!MESSAGE Missing required bundle org.eclipse.cdt.managedbuilder.ui_0.0.0.
!SUBENTRY 2 com.redhat.eclipse.cdt.autotools 2 0 2009-01-03 08:28:26.953
!MESSAGE Missing required bundle org.eclipse.cdt.make.ui_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.954
!MESSAGE Bundle update@plugins/org.eclipse.cdt.launch_3.1.2.200710251705.jar [118] was not resolved.
!SUBENTRY 2 org.eclipse.cdt.launch 2 0 2009-01-03 08:28:26.954
!MESSAGE Missing required bundle org.eclipse.ui.ide_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.launch 2 0 2009-01-03 08:28:26.955
!MESSAGE Missing required bundle org.eclipse.debug.ui_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.launch 2 0 2009-01-03 08:28:26.955
!MESSAGE Missing required bundle org.eclipse.cdt.ui_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.launch 2 0 2009-01-03 08:28:26.956
!MESSAGE Missing required bundle org.eclipse.cdt.debug.ui_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.956
!MESSAGE Bundle update@plugins/org.eclipse.cdt.debug.ui_3.1.2.200710251705.jar [120] was not resolved.
!SUBENTRY 2 org.eclipse.cdt.debug.ui 2 0 2009-01-03 08:28:26.956
!MESSAGE Missing required bundle org.eclipse.ui.ide_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.debug.ui 2 0 2009-01-03 08:28:26.957
!MESSAGE Missing required bundle org.eclipse.ui.editors_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.debug.ui 2 0 2009-01-03 08:28:26.957
!MESSAGE Missing required bundle org.eclipse.debug.ui_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.debug.ui 2 0 2009-01-03 08:28:26.958
!MESSAGE Missing required bundle org.eclipse.cdt.ui_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.958
!MESSAGE Bundle update@plugins/org.eclipse.cdt.cppunit_2.0.0/ [124] was not resolved.
!SUBENTRY 2 org.eclipse.cdt.cppunit 2 0 2009-01-03 08:28:26.959
!MESSAGE Missing required bundle org.eclipse.ui.ide_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.cppunit 2 0 2009-01-03 08:28:26.959
!MESSAGE Missing required bundle org.eclipse.debug.ui_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.cppunit 2 0 2009-01-03 08:28:26.960
!MESSAGE Missing required bundle org.eclipse.cdt.ui_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.cppunit 2 0 2009-01-03 08:28:26.960
!MESSAGE Missing required bundle org.eclipse.cdt.launch_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.960
!MESSAGE Bundle update@plugins/org.eclipse.cdt.managedbuilder.ui_3.1.2.200710251705.jar [125] was not resolved.
!SUBENTRY 2 org.eclipse.cdt.managedbuilder.ui 2 0 2009-01-03 08:28:26.961
!MESSAGE Missing required bundle org.eclipse.ui.ide_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.managedbuilder.ui 2 0 2009-01-03 08:28:26.962
!MESSAGE Missing required bundle org.eclipse.cdt.ui_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.962
!MESSAGE Bundle update@plugins/org.eclipse.cdt.debug.mi.ui_3.1.2.200710251705.jar [127] was not resolved.
!SUBENTRY 2 org.eclipse.cdt.debug.mi.ui 2 0 2009-01-03 08:28:26.962
!MESSAGE Missing required bundle org.eclipse.cdt.debug.ui_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.debug.mi.ui 2 0 2009-01-03 08:28:26.963
!MESSAGE Missing required bundle org.eclipse.cdt.ui_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.debug.mi.ui 2 0 2009-01-03 08:28:26.963
!MESSAGE Missing required bundle org.eclipse.debug.ui_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.964
!MESSAGE Bundle update@plugins/org.eclipse.cdt.make.ui_3.1.2.200710251705.jar [129] was not resolved.
!SUBENTRY 2 org.eclipse.cdt.make.ui 2 0 2009-01-03 08:28:26.964
!MESSAGE Missing required bundle org.eclipse.ui.ide_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.make.ui 2 0 2009-01-03 08:28:26.965
!MESSAGE Missing required bundle org.eclipse.ui.editors_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.make.ui 2 0 2009-01-03 08:28:26.965
!MESSAGE Missing required bundle org.eclipse.cdt.ui_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.make.ui 2 0 2009-01-03 08:28:26.966
!MESSAGE Missing required bundle org.eclipse.debug.ui_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-01-03 08:28:26.966
!MESSAGE Bundle update@plugins/org.eclipse.cdt.ui_3.1.2.200710251705.jar [132] was not resolved.
!SUBENTRY 2 org.eclipse.cdt.ui 2 0 2009-01-03 08:28:26.967
!MESSAGE Missing required bundle org.eclipse.ui.ide_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.ui 2 0 2009-01-03 08:28:26.967
!MESSAGE Missing required bundle org.eclipse.ui.editors_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.ui 2 0 2009-01-03 08:28:26.968
!MESSAGE Missing required bundle org.eclipse.search_0.0.0.
!SUBENTRY 2 org.eclipse.cdt.ui 2 0 2009-01-03 08:28:26.968
!MESSAGE Missing required bundle org.eclipse.compare_0.0.0.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Lotta stuff going on ....

Taellik
http://www.geocities.com/chainpunch