I'm having a problem with completions.
My class looks something like:
package com.foo.bar;
public class XMLBuffer
{
public com.foo.io.XMLBuffer buffer;
public baz()
{
this.buffer.
}
}
I hit C-c C-v C-. to complete at the end of the line "this.buffer."
and it complains that it can't find buffer. So I change it to
"buffer.", and the only completion is "buffer", and then it refuses
to complete "buffer.buffer.". It seems that the bsh is finding the
wrong XMLBuffer (i.e., it's finding the one that I'm in instead of
the one that it's declared as). At least, I think it's the bsh...
I'm using NTEmacs 20.7, jde-2.1.7. If anyone needs a smaller test
class, which demonstrates the same behaviour, or more information
about my setup, please let me know.
Thanks,
Blake.