From 4b824fbe84a54086393adda6a3b7dc46c48504cb Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Tue, 18 Aug 2009 23:25:34 -0400 Subject: [PATCH] Tests and fixes for analysis plugin and the task scheduler. --- interface/src/main/java/xsbti/AnalysisCallback.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/interface/src/main/java/xsbti/AnalysisCallback.java b/interface/src/main/java/xsbti/AnalysisCallback.java index 2ceedd4a6..70870965c 100644 --- a/interface/src/main/java/xsbti/AnalysisCallback.java +++ b/interface/src/main/java/xsbti/AnalysisCallback.java @@ -17,7 +17,9 @@ public interface AnalysisCallback * discovered.*/ public void foundSubclass(File source, String subclassName, String superclassName, boolean isModule); /** Called to indicate that the source file source depends on the source file - * dependsOn.*/ + * dependsOn. Note that only source files included in the current compilation will + * passed to this method. Dependencies on classes generated by sources not in the current compilation will + * be passed as class dependencies to the classDependency method.*/ public void sourceDependency(File dependsOn, File source); /** Called to indicate that the source file source depends on the jar * jar.*/