Hi Stephane,
I copied your jde-complete.el in my jde-lisp dir,
but the example i provided below is still not working.
What is the trick to get it going ?
gruse
Carsten
----- Original Message -----
From: "Stephane" <[EMAIL PROTECTED]>
To: "Carsten Schaefer" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Thursday, October 19, 2000 6:12 AM
Subject: Re: Code-Completion not working correctly
> Hello,
>
> sorry, i had forgotten some things.
>
> Hope the here-attached patch fixes your troubles,
> and will enhance your jde experience.
> :)
>
> Imports and packages statements with underscores and/or dollars (_$)
> shall
> work according to java specifications...
>
> Steff
>
> Carsten Schaefer wrote:
>
> > Hi,
> > i don't think that imports are working correctly now.
> > Example:
> > Class1:
> > package TE_ST;
> >
> > public class Test {
> > public void setVal1(){}
> > public static void main (String[] args) {
> > Test t = new Test();
> > }
> > }
> >
> > Class2:
> > package TE_ST2;
> > import TE_ST.Test;
> >
> > public class Test2 {
> > public void setVal2(){}
> > public static void main (String[] args) {
> > Test t = new Test();
> > t.
> > }
> > }
> >
> > When i try to complete t. in Class2 i get an
> > 'Could not find type of t, check if Test is in import statements.'
> > Error.
> > Class1 for itself is working now.
> >
> > gruse
> > Carsten
> >