LWJGL - Can't find imports

I’m using LWJGL 0.93 alpha and I cant find these 2 imports in the jar files.
org.lwjgl.Display
org.lwjgl.opengl.window

Both seem to be non existant, I’ve imported these external jars into Eclipse:
“lwjgl.jar”
“lwjgl_media.jar”
“lwjgl_util.jar”

Any suggestions?

Well, the Window class has been removed from LWJGL as far as I know. As for the Display class, that is in the org.lwjgl.opengl package.

Yea that was it, one of my options was to choose org.lwjgl.opengl.display just wanted to make sure. That fixed it mostly, every where in the code that said window I just changed it to display as well. And it all seems to be working. Thanks.