Paul,

>I'll update the grammar for this case.

Here's another one - array parameters seem to confuse the parser as
well.  This method won't show up in the method list...

   public void bar( int a[] ) {}

>Please let me know if it is not
> rescanning when the source buffer is modified.

We've got two machines running the latest JDE and it's not rescanning
properly on either one.

Start with a new java file foo.java.  If I type in the following and
then select "rescan", it works successfully and I have the one method
"bar" listed.

public class foo {
    public void bar() {
    }
}

Now I add the method "cat" so the file looks as below.  This time when
I select "rescan" nothing happens.  The method list still only contains
"bar".

public class foo {
    public void bar() {
    }

    public void cat() {
    }
}

If I save this file and reload it then the method list contains "bar"
and "cat" as expected.

Let me know if you can't reproduce these.

Mike
[EMAIL PROTECTED]


__________________________________________________
Do You Yahoo!?
Send instant messages & get email alerts with Yahoo! Messenger.
http://im.yahoo.com/

Reply via email to