Re: General Concept Question

2011-11-17 Thread Rhino
This is a (very) belated reply to Rob's remarks but hopefully he or others will still be able to help (Sorry, I got sidetracked on other things for a while). On 2011-11-01 07:52, Rob Seegel wrote: Just to be sure I understand here... you have one or more source files where some of the va

Re: General Concept Question

2011-11-01 Thread Peter Reilly
the ant task javac will call the command line javac for files that are changed. In your case ResumeFileGenerator.java has not changed so only ResumeConstants.java will be compiled to ResumeConstants.class. However, ResumeFileGenerator.class does not contain references to ResumeConstants.class, the

Re: General Concept Question

2011-11-01 Thread Rhino
On 2011-11-01 01:42, Stefan Bodewig wrote: On 2011-10-31, Rhino wrote: I have an Ant script that changes the value of some constants in a constants file that is used later by a Java program. The edits are pretty trivial in nature - three booleans get set to false instead of their normal value

Re: General Concept Question

2011-11-01 Thread Rob Seegel
Just to be sure I understand here... you have one or more source files where some of the values get replaced by the build prior to building the Java code, right? I suspect that this might be more of an Eclipse issue than an Ant issue. On 10/31/11 12:55 PM, Rhino wrote: Is there a fundamental

Re: General Concept Question

2011-10-31 Thread Stefan Bodewig
On 2011-10-31, Rhino wrote: > I have an Ant script that changes the value of some constants in a > constants file that is used later by a Java program. The edits are > pretty trivial in nature - three booleans get set to false instead of > their normal value of true - and then the Java program whi