eclipse-windowbuilder / windowbuilder

Eclipse Windowbuilder
https://projects.eclipse.org/projects/tools.windowbuilder
Eclipse Public License 1.0
78 stars 30 forks source link

Error when trying to use JCalendar #811

Closed Pedro101520 closed 2 months ago

Pedro101520 commented 2 months ago

image

When I try to add an element to JCalendar, this error appears

ptziegler commented 2 months ago

Can you provide a small example or a little bit more detail on what exactly your workspace looks like?

The error itself seems to suggest that the JCalendar jar you're using is not part of the Java classpath. But without further information, I can't make any assumptions about what exactly goes wrong here.

I tried out the demo that is shipped with JCalendar which at first glance seems to work. So I don't think there is an inherent problem. image

Pedro101520 commented 2 months ago

Thanks for answering! I managed to fix it by adding the following code in the module-info.java file: requires jcalendar; image