Im working on some beginner stuff in java and Im using MouseMotionListener to get input from the mouse in one of my classes. I know of the ones required already (mouseDragged, mouseMoved, etc...)
I was wondering if there was a list somewhere in eclipse or outside of eclipse where I can see all the methods associated with event listeners.
Thanks :)
The Java API Documentation contains a full list. You should bookmark the main page of the API and refer to it often. A full list of the AWT listener interfaces can be found in the package page for java.awt.event in the API.