From 9bfe594477d1ea12e3c2935a28b78fcef771283b Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Fri, 22 Feb 2002 06:44:54 +0000 Subject: [PATCH] bit more detail on dependencies git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271505 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/OptionalTasks/depend.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/manual/OptionalTasks/depend.html b/docs/manual/OptionalTasks/depend.html index ebcc352ed..a2448fdb9 100644 --- a/docs/manual/OptionalTasks/depend.html +++ b/docs/manual/OptionalTasks/depend.html @@ -90,6 +90,15 @@ how interrelated your classes are.

missing. Inner classes are handled by the depend task. +The most obvious example of these limitations is that the task can't tell +which classes to recompile when a constant primitive data type exported +by other classes is changed. For example, a change in the definition of +something like +
+public final class Constants {
+  public final static boolean DEBUG=false;
+}
+
will not be picked up by other classes.

Parameters