stevel 2005/08/23 02:43:07
Modified: src/main/org/apache/tools/ant ComponentHelper.java
Log:
extra javadocs, as requested by JHM
Revision Changes Path
1.62 +24 -0 ant/src/main/org/apache/tools/ant/ComponentHelper.java
Index: ComponentHelper.java
===================================================================
RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/ComponentHelper.java,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ComponentHelper.java 22 Aug 2005 23:02:52 -0000 1.61
+++ ComponentHelper.java 23 Aug 2005 09:43:07 -0000 1.62
@@ -87,16 +87,40 @@
*/
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 [EMAIL
PROTECTED]
+ */
public static final String COMPONENT_HELPER_REFERENCE =
"ant.ComponentHelper";
/**
* string used to control build.syspath policy [EMAIL PROTECTED]
*/
private static final String BUILD_SYSCLASSPATH_ONLY = "only";
+
+ /**
+ * special name of ant's property task [EMAIL PROTECTED] There is some
+ * contrived work here to enable this early.
+ */
private static final String ANT_PROPERTY_TASK = "property";
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]