New install in eclipse, palette won't work #724
-
Multiple symptoms -
I'm trying to debug this further and collect more details, but I must ask the Community if the #3 issue is somehow related to my overall problems? How can I install only the Current build? Eclipse 2023-06, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
It would be interesting to see which WindowBuilder bundles are actually installed in your IDE. This error seems to indicate that something wasn't properly installed. If there is something wrong with the installation, this could then describe both the first and the second problem. In the menu bar, you can check under Help -> About Eclipse -> Features which features have been installed (and thus also the bundles). In a clean installation, those should all be in version 1.15.0.
The second
How are you able to use the Eclipse 2023-06 with Java 11, when it requires at least Java 17? |
Beta Was this translation helpful? Give feedback.
-
And there's the problem. The method The easiest way to fix this is by manually updating GEF and chances are high that WindowBuilder will then work correctly. Then select both Draw2D and GEF. This should then lead to the installation of the plugins from the 2024-03 release, which is what WindowBuilder is tested against. |
Beta Was this translation helpful? Give feedback.
-
Well that did it! Thanks for the help and the detailed explanation of the fix! |
Beta Was this translation helpful? Give feedback.
And there's the problem. The method
getEditPolicyIterable()
was introduced with eclipse-gef/gef-classic@509370e, i.e. as part of the 2023-09 release. So the version that is installed in your IDE is not compatibly with the latest WindowBuilder version, where the lower bound is not correctly set, to reflect this.The easiest way to fix this is by manually updating GEF and chances a…