Hi Peter, Can you provide the model and the template so I can reproduce easily ?
Thanks Mathieu Velten [email protected] ________________________________ De : [email protected] [mailto:[email protected]] De la part de Topcased user list where issues are discussed Envoyé : mardi 1 novembre 2011 17:06 À : '[email protected]' Objet : [Topcased-users] Gendoc2 getDocumentation() returns random documents The GenDoc getDocumentation() function has unpredictable behavior for a model and script of mine. Perhaps my script is bad but I have tried many variations and still have random behavior. Here is my script with the formatting removed: <config> <param key='project' value='${workspace_loc}\ThinkSysML\Tutorials' /><param key='model' value='${project}\Models\Tutorial.sysml' /><output path='${project}/Generated/ThinkSysMLTutorials.docx' /></config> <context model='${model}' element='TutorialModel/TutorialPackage' importedBundles='topcased;documentation' searchMetamodels='true'/> <gendoc> <drop/> [for(a:Activity|self.getSortedContent())]<drop/> [for(ba:CallBehaviorAction |a.getSortedContent()->filter(CallBehaviorAction))][let a1:Activity=ba.getBehavior()]Tutorial Group: [a1.name/] <dropEmpty> <richText>[a1.getDocumentation()/]</richText></dropEmpty> [for(b2:CallBehaviorAction|a1.getSortedContent()->filter(CallBehaviorAction))]Tutorial: [let a2:Activity=b2.getBehavior()][a2.name/] <dropEmpty> <richText>[b2.getDocumentation()/]</richText></dropEmpty> [for(a3:Element|a2.getSortedContent())][if ( a3.oclIsKindOf(OpaqueAction) ) ][let oa:OpaqueAction=a3] [oa.name/][/let] <richText>[a3.getDocumentation()/]</richText> [/if][/for]<drop/> [/let][/for]<drop/> [/let][/for]<drop/> [/for] </gendoc> The getDocumentation function is returning documentation from randomly selected objects. Everything else is working correctly. In particular, printing of a1.name, a2.name, and oa.name are correct. But b2.getDocumentation() and a3.getDocumentation() often return documentation from completely different nodes. I wrote the getBehavior() function and put it into a service I called "documentation". The code for that is public static EObject getBehavior(EObject callbehavioraction){ CallBehaviorAction cba = (CallBehaviorAction)callbehavioraction; Activity act = (Activity) cba.getBehavior(); return (EObject)act; } Is there something obviously wrong with my code? Thanks, Peter Peter L. Jackson Director of Graduate Studies, Systems Engineering Program Professor, School of Operations Research and Information Engineering Rhodes Hall 218 (607) 255-9122 [email protected] ________________________________ Ce message et les pièces jointes sont confidentiels et réservés à l'usage exclusif de ses destinataires. Il peut également être protégé par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir immédiatement l'expéditeur et de le détruire. L'intégrité du message ne pouvant être assurée sur Internet, la responsabilité du groupe Atos ne pourra être engagée quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne saurait être engagée pour tout dommage résultant d'un virus transmis. This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Atos group liability cannot be triggered for the message content. Although the sender endeavors to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.
_______________________________________________ Topcased-users mailing list [email protected] http://lists.gforge.enseeiht.fr/cgi-bin/mailman/listinfo/topcased-users
