Importing in JDE - minor bug

2003-01-09 Thread Petter Måhlén
Hi, I have a file with (at least) the following import statement: import java.util.*; If I then ask JDE to import java.util.List, a new statement will be added: import java.util.*; import java.util.List; The second statement is of course redundant. I think I have traced the problem to:

Re: compiling 2 files with jde!

2003-01-09 Thread Rodrigo Coutinho Correia
just a reply to myself :) in answer to my own question... -- the simple way: how can i use jde to compile 2 single files without a project? how jde does that? dont use jde directly! use beanshell with jde.util.CrossCompiler class tp avoid jvm loaded and get fthings compiled! it works!

JDE Complete Menu

2003-01-09 Thread Jeba Bhaskaran
I am currently using dabbrev-completion to complete variable names in a Java buffer. How difficult would it be to add this functionality to the JDE Complete Menu function? For example, if there is a ., then the jde-complete-menu as it now would be called and if a . is not present then

Interface implementation wizard - minor bug

2003-01-09 Thread Petter Måhlén
Hi, I am using an empty interface to indicate that a certain operation (filtering) is possible on objects implementing it (much like the way Cloneable works). The jde-wiz-implement-interface wizard doesn't support this perfectly, since it adds 'implements Filterable' but doesn't generate an

JDE Complete Menu

2003-01-09 Thread Paul Kinnucan
Jeba Bhaskaran writes: I am currently using dabbrev-completion to complete variable names in a Java buffer. How difficult would it be to add this functionality to the JDE Complete Menu function? For example, if there is a ., then the jde-complete-menu as it now would be called and if a

Importing in JDE - minor bug

2003-01-09 Thread Paul Kinnucan
Petter Måhlén writes: Hi, I have a file with (at least) the following import statement: import java.util.*; If I then ask JDE to import java.util.List, a new statement will be added: import java.util.*; import java.util.List; The second statement is of course