I'm working on a project to generate C++ code from UML state diagrams. Although I need some changes from the default code generation process because the generated code must run on top of a "statechart framework". The framework already has an implemented structure for states transitions and transition events, I only need to generate an "interface code".
Can I do it as a module? Shoudl I do it as a Python script?
I'm completely new to Modelio.. where should I start? any hints? tutorials? guides?
I think it is preferable to make a module because creating a generator is complex. In this case, the module is better adapted than a script. Plus, you can use the Eclipse environment to help you developing your module (with auto completion).