[EMAIL PROTECTED] wrote:
so you were building the bpm4struts cartridge, in that case the file will be in 
andromda-all/cartridges/andromda-bpm4struts/target/test-reports



there are actually several test reports, the one you're interested in is  
TEST-org.andromda.cartridges.testsuite.CartridgeTest.txt
(end of quote)




OK thanks a lot wouter. I found the problem and it made appear that the 
implementation of this javadoc improvement is going to be far more difficult 
than I thought because there are plenty of tests that are going to fail.



All the more so as I just realized that I may not have another choice but to 
add a new getDocumentation() method to ModelElementFacade because I can't 
modify the existing getDocumentation  method to fit my needs. Let me explain. 
What happens is you have that as a comment :



This parameter is blablabla but as the comment is too long

it spans over 2 lines.





And what you want is that :



    * @param paramName This parameter is blablabla but as the

    * comment is too long, it spans over 2 lines.





The problem comes from the "@param paramName" (let's call that the prefix) we 
have to insert between the indent ("   * ") and the actual text of the comment. 
Furthermore the cutting of the first line after lineLength characters has to 
take the length of the prefix into account.

So I don't see how I can do without adding a new method to ModelElementFacade 
with the following signature :



public String getDocumentation(String indent, String prefix, int 
lineLength, boolean htmlStyle)





What do you think ?
--
Sébastien Arbogast
_________________________________________________________
Reply to the post : http://galaxy.andromda.org/forum/viewtopic.php?p=2062#2062
Posting to http://forum.andromda.org/ is preferred over posting to the mailing 
list!


-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
Andromda-user mailing list
Andromda-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/andromda-user

Reply via email to