- JButton(name=b1, onAction=myMethod, ...)
Is it possible to give some extra information to the specified onAction method?
Maybe:
- JButton(name=b1, onAction=myMethod, actionArguments="string1,string2" , ...)
and the Java method should be:
public void myMethod(Object[] arguments)