Hi!

I think I have found another bug. I got jde-complete-at-point working by
setting jde-global-classpath to a list (instead of nil, but IMHO I
should not have to do that, this command should be able to handle the
case when only the CLASSPATH is available). 

But, if I place point at the '^' in the code below

import java.util.Arrays;
import java.util.List;
import java.util.Iterator;

public class Foo
{
  public static void main(String[] args)
  {
    List      myList   = Arrays.asList(args);
    Iterator  iterator = myList.iterator();
    
    iterator.^
    while (iterator.hasNext())
    {
      System.out.println(iterator.next());
    }
  }
}

and I type C-c C-v ., the mode line contains

java.lang.Object next()

instead of

java.util.Iterator next()

;)


A question: The help documentation does not say anything about if it is
possible to insert the completed item, e.g. if I wanted to have the
next() method in the example above, do I have to type it in manually, or
can I get Emacs to insert it for me? If so, how?


/John

-- 
LM/ERA/SVA/KD John Olsson  mailto:[EMAIL PROTECTED] 
   Ericsson Radio Systems AB, Box 1248, S-581 12 Linkoping
-------------------------------------------------------------
  Phone: +46 13 321070   ECN: 868 1070   Fax: +46 13 287370
-------------------------------------------------------------
I was doing object-oriented assembly when I was 1 year old...  
For some reason my mom insists on calling it "Playing with blocks"

Reply via email to