@Override
public void actionPerformed(ActionEvent e) {
if (e.getSource() == thirdBtn) {
//System.out.println("Third Button Click");
System.out.println(e.getSource()+" Click");
}
}
In the code above, I was wondering if instead of doing this:
//System.out.println("Third Button Click");
if I could do something like this:
System.out.println(e.getSource()+" Click");
However the code outputs:
BlackJack.OverBoard$BlackJackButton[,440,395,100x25,alignmentX=0.0,alignmentY=0.5,
border=javax.swing.plaf.BorderUIResource$CompoundBorderUIResource@7a3d8738,
flags=16777504,maximumSize=,minimumSize=,preferredSize=,
defaultIcon=,disabledIcon=,disabledSelectedIcon=,
margin=javax.swing.plaf.InsetsUIResource[top=2,left=14,bottom=2,right=14],
paintBorder=false,paintFocus=true,
pressedIcon=,rolloverEnabled=true,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,
text=Change,defaultCapable=true] Click
I don't want this, I want to know how to get the JButton name and output it on click.
EDIT:
Some people are confused. When I say "name" (maybe that's the wrong word for it), I meant say you initialize a JButton
JButton btnExample = new JButton();
I want it so that when you click the button, it outputs btnExample in the console.


JButton#setTextandJButton#getTextwhich is the text displayed on the screen,JButton#setNameandJButton#getNamewhich is an internalStringreference, so it can be anything you like, or, you can create your own custom button and modify thetoStringmethod - which is not recommended... – MadProgrammer Jan 14 at 1:52btnExamplein the console." Since this information is probably not visible to the end user of a GUI and would mean nothing to them if they saw it, it seems this use-case refers to code running during development. I suggest that what is actually needed here is a debugger, and perhaps some logging. – Andrew Thompson Jan 14 at 4:41