Noob! getFactory().createGLCanvas()

can someone explain why all the jogl tutorials include the statement

         GLCapabilities capabilities = new GLCapabilities();
	         GLCanvas canvas =
	             GLDrawableFactory.getFactory().createGLCanvas(capabilities);

yet I cant find the DrawableFactory.createGLCanvas method in any documentation? This is very frustrating
thanks all,
matt

EDIT: I possibly didn’t make it clear that eclipse is giving me an “unrecognized method” error

os 10.4.11
2.4Ghz Intel Core 2 duo
Java for mac os 10.4 release 6
jogl (JSR-231 1.1.0)
Eclipse: 3.2.2 Build id: M20070212-1330

Try to use just

new Canvas()

. Right now that’s the preferred way to instantiate a new canvas.

Makes quite a bit more sense… I guess tutorials are tough when things change so much
thanks.