>>>>> "Madeleine" == Arnold, Madeleine <[EMAIL PROTECTED]> writes:

  Madeleine> Hi there I'm a JDE newbie of 2 days. Can anyone help with
  Madeleine> this question: Is there a way in JDE to compile all
  Madeleine> classes within a particular package? I've found the build
  Madeleine> command that calls javac on the application's main class,
  Madeleine> but my application has several packages, and I often want
  Madeleine> to recompile only a particular package rather than the
  Madeleine> entire application.  Thanks Madeleine

        Using one of the standard build tools is probably the way 
to go. JDE supports "make" and "ant" directly, and M-x compile will
work with anything that you choose. Also the "JMaker" package from
David Ponce (which I think comes with JDE these days) will build make
files for you automatically. In my experience ant is generally quicker
because it launches all compiles from a single JVM, while make will
tend to launch javac for each out of date file, which means multiple
JVM invocations.

        Cheers

        Phil

Reply via email to