Is there any good way to scroll a GLJPanel, something similar to
GLJPanel panel = GLDrawableFactory.getFactory().createGLJPanel( capabilities );
JScrollPane scroll = new JScrollPane( panel );
This compiles, but no scrollbar apears.
Should I extend GLJPanel and make it implements Scrollable? Is it possible? This way it seems to break the Factory pattern of the GLJPanel (if it works at all…).
Or, If my ideas above are totally crazy :P, the way to do it would be implementing scrolling from scratch ???