From fce0b0c9d0c8db530d1838c7db5a78e08df7e49b Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Tue, 23 Aug 2005 09:43:07 +0000 Subject: [PATCH] extra javadocs, as requested by JHM git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278538 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/tools/ant/ComponentHelper.java | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/main/org/apache/tools/ant/ComponentHelper.java b/src/main/org/apache/tools/ant/ComponentHelper.java index 7425d4420..08cc3589d 100644 --- a/src/main/org/apache/tools/ant/ComponentHelper.java +++ b/src/main/org/apache/tools/ant/ComponentHelper.java @@ -87,16 +87,40 @@ public class ComponentHelper { */ private Hashtable createdTasks = new Hashtable(); + /** + * this does not appear to be used anywhere in the Ant codebase + * even via its accessors + */ private ComponentHelper next; + + /** + * Project that owns a component helper + */ private Project project; + + /** + * Error string when the file taskdefs/defaults.properties cannot be found + */ private static final String ERROR_NO_TASK_LIST_LOAD = "Can't load default task list"; + /** + * Error string when the typedefs/defaults.properties cannot be found + */ private static final String ERROR_NO_TYPE_LIST_LOAD = "Can't load default type list"; + + /** + * reference under which we register ourselves with a project -{@value} + */ public static final String COMPONENT_HELPER_REFERENCE = "ant.ComponentHelper"; /** * string used to control build.syspath policy {@value} */ private static final String BUILD_SYSCLASSPATH_ONLY = "only"; + + /** + * special name of ant's property task -{@value}. There is some + * contrived work here to enable this early. + */ private static final String ANT_PROPERTY_TASK = "property"; /**