Paul Kinnucan schrieb:
> 
> I have posted a beta of release 2.1.6 of the JDE on the JDE
> website.
> 
> http://sunsite.auc.dk/jde/
> 
> The beta introduces a Java parser and a new version of the JDE's class
> import wizard and fixes a few bugs. See release  notes below for details.
> 
> This release also includes the jtags scripts which were inadvertently
> omitted from the previous release. I'm not sure these scripts are needed
> anymore as the latest version of etags works with Java source.
> 
> I'd be interested in suggestions for features based on the Java parser. For
> instance, one use might be for on-the-fly syntax checking of statements
> where everytime you type a semicolon the JDE checks to make sure the
> statement just
> entered is syntactically correct. (Such a feature could of course be turned
> off.)

Some suggestions:

- intelligent completion, depending on context (local variables,
importeted types, methods of object)
e.g.  Code snippet 
        Enumeration e;
        while (e.h  -- completion now should lead to hasMoreElements

- method parameter proposal and checking (similar to how it is done in
JBuilder)
e.g code snippet
        Graphics g;
        g.fillRect(  -- somewhere  > int x,int y,int width,int height < 
                                        gets shown. 

Just my 2 cents
Marcel

Reply via email to