Version swingstates_0.2_08_04_16
The JNamedTag label displayed in the StateMachineVisualization component is the result of the default Object toString() Method (wich is not that usefull).
It could be interesting to override the toString() method to make it return the name of the tag ?
Look for the QuinzeFrame.java in the attached zip and uncomment the following override to see the problem :
private JNamedTag clickableNumbers = new JNamedTag("clickableNumber"){
@Override
public String toString() {
return super.getName();
}
};
zipped source files
Thank you. Fixed it.