Hi

I get the message

 Could not find class (LineItem)e.

when trying to do method completion on the example below.


 public float price() throws RemoteException
    {
        float price = 0;
        Enumeration e = items.elements();

        while (e.hasMoreElements())
            {
                LineItem item = (LineItem)e.
                                            ^  (C-c C-v C. does not work here)
            }
        return price;
    }


Ciao
  Volker

Reply via email to