Browse Source

extra javadocs, as requested by JHM

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278538 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 20 years ago
parent
commit
fce0b0c9d0
1 changed files with 24 additions and 0 deletions
  1. +24
    -0
      src/main/org/apache/tools/ant/ComponentHelper.java

+ 24
- 0
src/main/org/apache/tools/ant/ComponentHelper.java View File

@@ -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";

/**


Loading…
Cancel
Save