I want to do is:
if the source is a JLabel then....
and if the source is a JButton then....
but:
MouseListener mL = new MouseAdapter(){
@Override
public void mouseEntered(MouseEvent me){
if(me.getSource() .......){
//NO IDEA ANYMORE!
}
}
};
please help