I am using setname
to define buttons in my Swing applcation. I want to use the names in my FEST code. This is the source code:
for (int i = 0; i < trimSizeButtons.length; ++i) {
trimSizeButtons[i].setActionCommand(
trimSizes[i].getDisplayName
trimSizeButtons[i].setName(trimSizes[i].getDisplayName());
What then is the result of the names here so that I can use in my fest code?