GLJPanel or GLCanvas

Hi
I am having trouble figuring out the difference between GJPanel and GLCanvas and when to use which. I recently switched from Eclpise to NetBeans IDE because NetBeans has a GUI builder but the components are swing so not sure what to do cause all my books have examples based on AWT components. Advice and info appreciated.
Edward

Hello,

basically GLJPanel is a light-weight component and GLCanvas is a heavy-weight component.
GLJPanel is slower than GLCanvas but GLPanel is easier when using other light-weight-components (like Swing).

Nico