At 05:02 PM 8/21/00 +0200, you wrote:
>
>Hi everybody,
>
>i am using NTEmacs 20.6 under NT...
>
>How can i get the current method name in lisp function ?
>
>for example :
>
>private toto(String arg1)
>{
> while(true)
> {
> tutu(....
> ^ i am here
>and i want to get "toto" or "private toto(String arg1)" ...
>
>Thank you , and Thanks to the JDE team
>Benoit.
>
The next release (probably) tonight will contain a function called
jde-parse-get-method-name-at-point that returns a cons cell whose car is
the name of the current class at point and whose cdr is the name of the
current method at point, e.g., ("File" . "toString").
- Paul