GL4Java-GLUT Functions

In need of assistance!
Trying to access glutWireSphere I imported appropriate library according to gl4java javadoc(import gl4java.utils.glut.*:wink: but unable to get access to method. What am I doing wrong? Please HELP!!!

Try this:

protected GLUTFunc glut = null;
…
glut = new GLUTFuncLightImpl(gl, glu);
…
glut.glutWireSphere(double radius, int slices, int stacks);
…
-Ron

Thank you ;D