I have created a entire model and then got the diagram generated code. Now I realized that I need to add more components in Palette. But I have already carried out lot of modifications in the already generated Code. So if I repeat all the steps, mostly I am gonna loose all my changes. So is there any way to add new components or introduce new element inside Palette without developing from initial cycle.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

What do you mean exactly? Is it that you're afraid of losing modifications you did to the generated source code? If that's the case you can prevent a function from being generated adding the @generated NOT tag.

/**
 * @generated NOT
 */
void foo() {...}
link|improve this answer
To be more specific, anything without the @generated tag will be left untouched during regeneration, but I think that way makes it clearer that an originally generated method has been modified afterwards. – José M. Benítez Aug 11 '11 at 9:13
feedback

Your Answer

 
or
required, but never shown

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