when press mouse on a component(such as a text area),How to get the component's name use mouse event?

my code like this:

///////////////////////////////////////
public void mousePressed(MouseEvent e)
{ Syesem.out.println(e.getSource());
}
/////////////////////////////////////////

but "e.getSource()" show many information of the component but doesn't show the name of the component.

What Should I do?

thank you!