RE: PROPOSAL: New Java Build Feature

2001-03-20 Thread Jeff Rancier
What about using jam http://www.perforce.com/jam/jam.html? Jeff -Original Message- From: Paul Kinnucan [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 5:37 PM To: Nascif Abousalh-Neto; Schewe, Jon (MN65) Cc: [EMAIL PROTECTED] Subject: RE: PROPOSAL: New Java Build Feature At

RE: ECB 1.0 released

2001-03-20 Thread Kao, Jonathan
ECB layout looks great. I can not seem to get ECB-method window to display methods in my C or C++(file extensions .cxx, .hxx)files. Methods are displayed OK for .h files. I have customized ECB so that it shows .cxx .hxx files. I don't know if this is a current limitation or is there something

AW: ECB 1.0 released

2001-03-20 Thread klaus . berndl
ECB layout looks great. I can not seem to get ECB-method window to display methods in my C or C++(file extensions .cxx, .hxx)files. Methods are displayed OK for .h files. I have customized ECB so that it shows .cxx .hxx files. I don't know if this is a current limitation or is there

Re: PROPOSAL: New Java Build Feature

2001-03-20 Thread eric
In message [EMAIL PROTECTED] m, "Denis, Ronald J (Ronald)** CTR **" writes: : I too use ant for my builds. It does not compile : every file every time. However, admittedly there have : been times when compile errors occur which only go away : upon a full rebuild. This doesn't happen often

Re: PROPOSAL: New Java Build Feature

2001-03-20 Thread Raffael Herzog
[EMAIL PROTECTED] wrote: It's also why Ant cannot handle the following case unless you do a full, clean build: 1. write the following classes class A { void foo() { } } class B extends A { void bar() { foo(); } } 2. build and run: everything is fine. 3. now change A as