Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 24645 invoked from network); 23 Aug 2005 09:43:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 23 Aug 2005 09:43:09 -0000 Received: (qmail 75700 invoked by uid 500); 23 Aug 2005 09:43:09 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 75346 invoked by uid 500); 23 Aug 2005 09:43:08 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 75333 invoked by uid 500); 23 Aug 2005 09:43:08 -0000 Received: (qmail 75329 invoked by uid 99); 23 Aug 2005 09:43:07 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 23 Aug 2005 02:43:07 -0700 Received: (qmail 24614 invoked by uid 1365); 23 Aug 2005 09:43:07 -0000 Date: 23 Aug 2005 09:43:07 -0000 Message-ID: <20050823094307.24613.qmail@minotaur.apache.org> From: stevel@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant ComponentHelper.java X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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 -{@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"; /** --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org