Re: [SCXML] custom tags

2011-10-24 Thread Micka
Hi, I also really like customActions. But right Now, i'm trying to figure out how to use ExternalContent . The document say that I have to implements it, but I really don't understand how to use it, I mean i get : class myclass extends Action implements ExternalContent . . ..

Re: [SCXML] custom tags

2010-12-13 Thread jocke eriksson
Hej jonathan I have done a telephony state machine, and commons scxml was a perfect choice for handling the logic. Custom actions and custom tags are the same thing. register your action like this. ListCustomAction actions actions.add(new CustomAction(NAME_SPACE, menu, MenuAction.class));

Re: [SCXML] custom tags

2010-12-13 Thread jonathan augenstine
Jocke, Thank you for the response. I am certain I will have further questions. Jonathan On Mon, Dec 13, 2010 at 12:28 AM, jocke eriksson jock...@gmail.com wrote: Hej jonathan I have done a telephony state machine, and commons scxml was a perfect choice for handling the logic. Custom actions

[SCXML] custom tags

2010-12-12 Thread jonathan augenstine
I am investigating using the SCXML to implement a telephony state machine. I need to be able to add custom tags and actions. I see examples of adding custom actions, but no examples of adding custom tags. Can someone point me in the direction of how to accomplish that task? Jonathan