http://www.perlmonks.org?node_id=940993


in reply to Re^2: Java Auto-Compile
in thread Java Auto-Compile

The way that java works, if you change one thing, you have to recompile it all

That's not true. Like other languages, you just have to recompile what depends on the class you changed.

That said, that requires a list of dependencies, and finding that list is beyond what this tool should do.

that's what I asked

I didn't notice there was a question, since I didn't look for one, since this isn't SoPW.

javac surely returns a non-zero exit code on error, and zero on success.

Replies are listed 'Best First'.
Re^4: Java Auto-Compile
by JediMasterT (Sexton) on Dec 01, 2011 at 04:52 UTC

    If I change something in the hierarchy, the everything lower changes.
    Also I tried running javac in `` quotes, but it never returns anything.

      If I change something in the hierarchy, the everything lower changes.

      Yes, like I said, you don't need to recompile everything. Only the stuff higher in the dependency hierarchy needs to be recompiled. You don't have to compile the stuff deeper in the dependency hierarchy.

      Also I tried running javac in `` quotes, but it never returns anything.

      That captures what javac prints to STDOUT. I suggested you check its exit code. See the return value of system.

        Fantastic sir! I just did that.