Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public void mouseEntered(MouseEvent evento) {
  2. ultimoBotonSeleccionado = (JButton) evento.getComponent();
  3. if (ultimoBotonSeleccionado.isEnabled() == true) {
  4. ultimoBotonSeleccionado.setBackground(COLOR_TITULO);
  5. ultimoBotonSeleccionado.setForeground(COLOR_FONDO);
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement