I recently installed Papyrus and attempted to follow the tutorial for creating a model and generating Java code off it.

Unfortunately, I'm pretty much stuck right at the beginning. In the class definition, I added a static operation for main, and I'm able to specify its argument as an array:

in args: <Undefined> [*]

Unfortunately, it does not allow me to specify the type to be String. That is, I would like to specify it as follows:

in args: String [*]

No matter how I enter the type (or any type for that matter), the type reverts back to <Undefined>. I suspect something is wrong or missing with a profile it is supposed to use. Unfortunately, the documentation for this tool is rather sparse, and I cannot find an answer or solution to this.

Anyone has run into this same problem as well???

link|improve this question

feedback

2 Answers

Have you imported the UML Primitive types package? This should allow you to define the type of the argument to Integer, String or Boolean.

In the model explorer, right click on your model, then choose 'Import package from registered library'
In the window that pops up pick 'UMLPrimitiveTypes' (or the Java ones, if you prefer that).
After this, it should work.

link|improve this answer
Thanks, I'm gonna give it a try! – luis.espinal Sep 7 '11 at 15:03
feedback

Papyrus consider that modeling is independent of languages and therefore no java type are usually possible. This is fully logical in a MDA approach but not in the real life :-)

There is an accelero plugin which is supposed to generate code from a diagram but it doesn't work with the latest Helios build so..... The best is to do you class diagram and then manually code the related code. I am sure that your code will be better than the one you could get from accelero :-)

link|improve this answer
Damn. That's a bummer. Thanks for the heads-up! – luis.espinal Sep 5 '11 at 10:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.