Search code examples
javaswinglisteners

I want to perform some action when a mouse is over JMenuItem. What listener should I use?


I want to perform some action when a mouse is over JMenuItem. What listener should I use?


Solution

  • Use MouseListener. Its method mouseEntered() and mouseExited() will be helpful to you.