Hello again, sorry for my stupidness

But I have no idea how to come along with xith3d....
I replaced the existing line from "Chapter02.java"
env.addCanvas( Canvas3DFactory.createWindowed( 800, 600, "My empty scene" ) );
with the line you pasted here:
env.addCanvas( Canvas3DFactory.createWindowed( OpenGLLayer.JOGL_SWT, 800, 600, FSAA.OFF, "My empty scene" ));
After running it Eclipse showed me that explanation (error message):
2011-10-18 20:33:08.653 java[1146:407] [Java CocoaComponent compatibility mode]: Enabled
2011-10-18 20:33:08.654 java[1146:407] [Java CocoaComponent compatibility mode]: Setting timeout for SWT to 0.100000
Exception in thread "main" java.lang.IllegalArgumentException: To construct an SWT Canvas, you must provide an owner of type org.eclipse.swt.Composite. At present, this means that you need to run as an Eclipse plug-in or as an Eclipse Rich Client Platform application. In the future, we will provide XithRCP to simplify this process; however, it is fairly easy to create a default RCP application using the Eclipse wizard 'New plug-in project' and selecting 'Yes' when asked 'Do you want to create a rich client application' on the 2nd page.
at org.xith3d.render.jsr231.CanvasPeerImplSWT.<init>(CanvasPeerImplSWT.java:226)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at org.xith3d.render.Canvas3DFactory.create(Canvas3DFactory.java:132)
at org.xith3d.render.Canvas3DFactory.create(Canvas3DFactory.java:166)
at org.xith3d.render.Canvas3DFactory.create(Canvas3DFactory.java:180)
at org.xith3d.render.Canvas3DFactory.create(Canvas3DFactory.java:290)
at org.xith3d.render.Canvas3DFactory.create(Canvas3DFactory.java:478)
at org.xith3d.render.Canvas3DFactory.createWindowed(Canvas3DFactory.java:772)
at org.xith3d.render.Canvas3DFactory.createWindowed(Canvas3DFactory.java:830)
at org.xith3d.test.Chapter02.<init>(Chapter02.java:72)
at org.xith3d.test.Chapter02.main(Chapter02.java:77)
I went through the explanation to create an "eclipse plug-in" as a rich client application.
I've done a lot of imports there but I don't really know what I'm doing there

Finally I got the same error message (that that I posted above)
Now I really have no idea how to get the things working...
Just need to do some scene-graphing stuff for my university....