Re: [Andromda-user] method.getParameters()

2004-08-06 Thread MaboMail
Thanks! I use getArguments()! Bye Matteo *** REPLY SEPARATOR *** On 06/08/2004 at 7.30 Chad Brandon wrote: >Try $method.arguments instead, getParameters() returns >all parameters including the return >parameter...getArguments() returns only the arguments >of the method. > > >--

Re: [Andromda-user] method.getParameters()

2004-08-06 Thread Chad Brandon
Try $method.arguments instead, getParameters() returns all parameters including the return parameter...getArguments() returns only the arguments of the method. --- MaboMail <[EMAIL PROTECTED]> wrote: > Hello! > > I try to define my new catrdige and i write some > code in velocity. > > The meth

RE: [Andromda-user] method.getParameters()

2004-08-06 Thread iamdraftdog
you probably did not specify the return type to your method (perhaps implying it to be void) arguments is the thing you want parameters = arguments + return type -- Wouter "MaboMail" <[EMAIL PROTECTED]> wrote: >Hello! > >I try to define my new catrdige and i write some code in velocity. > >T

[Andromda-user] method.getParameters()

2004-08-06 Thread MaboMail
Hello! I try to define my new catrdige and i write some code in velocity. The method getParametrs() return always one parameter more then i drowed in my uml! It is normal? In my UML i define a clas wit a method this method requide 1 parameter CLASS state Method setName(String name) If i