Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - SeboStone

Pages: [1]
1
General Board / Re: generate sequence diagram ASP.NET 3.5
« on: March 11, 2009, 03:50:34 am »
Ok, I found the way to debug the Library, but only in .NET 2.0. .NET 3.5 is not supported in Enterprise Architect 7.1. :'(

2
General Board / generate sequence diagram ASP.NET 3.5
« on: March 11, 2009, 03:16:21 am »
Hi!

I want to generate a sequence diagram from VB.NET Source Code, linked as Library in a ASP.NET Project (.NET 3.5). I have configured a Package Build Script but the debugging doesn't work. The problem is that I can't start a program, I must start a Webserver. I want use the integrated Webserver of the Visual Studio 2008 but all my trials failed.

How does the debugging work with an ASP.NET Project?

I hope you understand me, my english is not the best :-[

Thank You!

3
General Board / Comments for PHP like phpDocumentor
« on: April 04, 2008, 09:51:20 am »
Hi!

Excuse my bad English, that's not my native language ....

I write a Code Generation Template, to replace the JAVADOC_COMMENT macro because the output of JAVADOC_COMMENT is not phpDocumentor conformal.

JAVADOC_COMMENT:
Code: [Select]
     /**
       * the constructor
       *
       * @param server    the database server
       */

phpDocumentor need:
Code: [Select]
     /**
       * the constructor
       *
       * @param string $server the database server
       */

now I have this:
Code: [Select]
     /**
       * the constructor
       *
       * @param $server
       */

that's my Generator Code:
Code: [Select]
/**
$notes = %opNotes%
%if $notes != ""%
      $notes += "\n\n"
%endIf%

$notes += %list="Parameter" @separator="\n" @indent="@param "%

%WRAP_COMMENT($notes, genOptWrapComment, " ", "* ")%
 */

You see, I have any problems:

How I can print the Parameters Notes and his Type? Have You any idea for me?

Thank you for your help!


Sebo

Pages: [1]