Re: Cleaning up import statements

2002-04-09 Thread Matthew Watson
Correction: Perl script. #!/usr/bin/perl $verbose = 0; $classdir = ; $getclassdir = 0; fileloop: foreach $i (ARGV) { if ($i eq -v){ $verbose = 1; next; } if ($i eq -d){ $getclassdir = 1; next; } if ($getclassdir){ $classdir = $i;

Re: Cleaning up import statements

2002-04-08 Thread James Sinnamon
Matt, On Tue, 9 Apr 2002 10:50, WATSON Matt wrote: Not jde related, but I wrote a shell script to wrap jad which would decompile your class files, extract all the import statements it makes and replace the imports in your source with the ones jad comes up with. Using the right jad options,

RE: Cleaning up import statements

2002-04-08 Thread Altmann, Michael
Sinnamon [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 8:02 PM To: [EMAIL PROTECTED]; WATSON Matt; [EMAIL PROTECTED] Subject: Re: Cleaning up import statements Matt, On Tue, 9 Apr 2002 10:50, WATSON Matt wrote: Not jde related, but I wrote a shell script to wrap jad which