> No, I haven't. But, how do I choose "result1" or "result2" from InputActions' > "save" method ?
Base on the result from execute()
public String execute() {
if (something) {
return "result1";
} else {
return "result2";
}
}
Regards
--
Lukasz
http://www.lenart.org.pl/
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

