I am getting a "Not a GL3 implementation exception" in the method init when it tries to do the assignment.
void init(GLAutoDrawable glad){
GL3 gl3 = glad.getGL().getGL3();
}
I downloaded the jogamp-all-platforms. I am using Eclispe IDE and configured the build path by making a new user library. The new user library has all the jars of the jogamp-all-platforms in it. I looked at similar questions but it is not that helpful.
You should read this document. In your case, glad.getGL() is probably a GL4bc instance or a GL2 instance. It depends on the GLProfile instance you use in your code.