Re: OFFTOPIC! RE: IDEs vs. text editors, was RE: Borland Jbuilder finally adds ant support (at a price)

2002-05-21 Thread kenyee
On 05/21/2002 12:15:59 PM, David Jencks wrote: > You mean like the jde speedbar class browser?? I'm not sure what > twisties are or why triangles help you browse classes;-) Tree views > sure are handy though. They usually in a smaller font to let you see more and you can represent more using

Re: OFFTOPIC! RE: IDEs vs. text editors, was RE: Borland Jbuilder finally adds ant support (at a price)

2002-05-21 Thread kenyee
On 05/21/2002 01:18:32 AM, "Molitor, Stephen" wrote: > Just wanted to point out that Emacs has more capabilities than many > people realize. Emacs, JDEE and Xrefactory is all I use to develop. Thanks, Steve. I was wondering about Emacs supermacros when I wrote what I wrote :-) I used it wayyy

IDEs vs. text editors, was RE: Borland Jbuilder finally adds ant support (ata price)

2002-05-20 Thread kenyee
On 05/20/2002 08:53:21 PM, Paul Cody wrote: > shop learns emacs or they hit the highway (or vi, provided they can I've found that IDEs help people refactor a lot more easily (assuming the IDE has refactoring support like VisJava and IDEA). One reason is the overhead view of classes and methods

Re: Open file and regex replace

2002-04-22 Thread kenyee
On 04/22/2002 03:14:27 PM, "comp boy" wrote: > there a way in ant to open up this constants file search for a key > word ie (public static final boolean IS_APPLET=true;) and then change > true to false and vise versa. I just went through doing something like this recently. What I had ant do was

RE: Javac and Sourcepath woes

2002-04-16 Thread kenyee
On 04/16/2002 11:22:25 AM, "Wood, Alan" wrote: > Not sure how that would help since a build.xml for layer A1 would > still be able to find the source to layer A. Sorry, you're right. I thought they could call sideways and call vertically instead of just call vertically. javac will use the cur

Re: Javac and Sourcepath woes

2002-04-16 Thread kenyee
On 04/16/2002 11:14:14 AM, "Wood, Alan" wrote: > However, since Ant puts in the -sourcepath directive > on the command line, javac can find the source for > layer A, and then compiles it! Sounds like you want multiple build.xml files at each layer rather one mongo build.xml file at the top laye

Re: getting duplicate classes in my jar file

2002-04-12 Thread kenyee
You might want to try genjar. I just finished hooking it into my build.xml file and it *does* work as advertised. I'm impressed :-) ken -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: off-topic: magic jar linker?

2002-04-12 Thread kenyee
On 04/12/2002 02:48:36 PM, "Timothy P. Miller" wrote: > Yes, I've been evaluating the Ant extension genjar. Seems to work > but have not used it in production. Very cool. Thanks. Just what I was looking for :-) ken -- To unsubscribe, e-mail: For additional

off-topic: magic jar linker?

2002-04-12 Thread kenyee
Does anyone know of a jar creator that magically figures out class dependencies and puts them in the final jar file only as needed? I'm specifically looking for a replacement for VisualAge's export feature. You can select a class to export, then choose to export .class files, then tell it to f

RE: auto dependency generation?

2002-04-11 Thread kenyee
On 04/11/2002 07:25:55 PM, "Conor MacNeill" wrote: > Can you check the package statements in these two files. That was exactly it. VisualAge is exporting garbled .java files that trim off the first line or two :-( thanks, ken -- To unsubscribe, e-mail: For a

RE: auto dependency generation?

2002-04-11 Thread kenyee
On 04/10/2002 11:59:50 PM, "Conor MacNeill" wrote: > Javac compiler will handle this issue. If a class, which is required, > does not yet exist, javac will attempt to find a source file by looking > at the source path. After digging into the various options including , it does seem like javac s

Re: auto dependency generation?

2002-04-10 Thread kenyee
On 04/10/2002 03:10:30 PM, Diane Holt wrote: > There's the task, but it works once the class files are all > compiled (since it uses them to determine the dependencies). Found that as well...seemed like a backwards thing do do (needing class files to generate dependencies :-) > But won't the

auto dependency generation?

2002-04-10 Thread kenyee
Is there a simple way to generate a dependency file for inclusion into build.xml? I have several .java files in a com.blah.blah package (in a directory). One of the files is an Interface that one of the other files uses. Ant chose to compile the non-Interface file first, so it can't get the .c

Re: Can't run Ant from 4NT on Win32

2002-04-10 Thread kenyee
On 04/10/2002 12:19:22 PM, Diane Holt wrote: > Fixed in 1.5alpha -- see: Thanks. Modified the one line in ant.bat that detects 4NT to read %@eval[2+2]%. I had searched the ant-users mailing list archive w/ no luck before posting. And thanks, Simon, for the reference to Cygwin. I was just us

Can't run Ant from 4NT on Win32

2002-04-10 Thread kenyee
I'm not sure if any of you folks use 4NT (from the 4DOS folks), but if you do, Ant runs really strangely. It refuses to see any command line parameters; e.g., "ant -help" doesn't work. It also won't see the default project target in the build.xml file if you run "ant". It tries to build a targ