Browse Source

minor javadoc tweaks

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

+ 18
- 13
src/main/org/apache/tools/ant/MagicNames.java View File

@@ -37,55 +37,57 @@ public final class MagicNames {
public static final String ANTLIB_PREFIX = "antlib:";

/**
* Ant version property. {@value}
* Ant version property.
* Value: {@value}
*/
public static final String ANT_VERSION = "ant.version";

/**
* System classpath policy. {@value}
* System classpath policy.
* Value: {@value}
*/
public static final String BUILD_SYSCLASSPATH = "build.sysclasspath";

/**
* The name of the script repository used by the script repo task
* The name of the script repository used by the script repo task.
* Value {@value}
*/
public static final String SCRIPT_REPOSITORY = "org.apache.ant.scriptrepo";

/**
* The name of the reference to the System Class Loader
* The name of the reference to the System Class Loader.
* Value {@value}
**/
public static final String SYSTEM_LOADER_REF = "ant.coreLoader";

/**
* Name of the property which can provide an override of the repository dir
* Name of the property which can provide an override of the repository dir.
* for the libraries task
* Value {@value}
*/
public static final String REPOSITORY_DIR_PROPERTY = "ant.maven.repository.dir";
/**
* Name of the property which can provide an override of the repository URL
* Name of the property which can provide an override of the repository URL.
* for the libraries task
* Value {@value}
*/
public static final String REPOSITORY_URL_PROPERTY = "ant.maven.repository.url";

/**
* name of the resource that taskdefs are stored under
* name of the resource that taskdefs are stored under.
* Value: {@value}
*/
public static final String TASKDEF_PROPERTIES_RESOURCE =
"/org/apache/tools/ant/taskdefs/defaults.properties";
/**
* name of the resource that typedefs are stored under
* name of the resource that typedefs are stored under.
* Value: {@value}
*/
public static final String TYPEDEFS_PROPERTIES_RESOURCE =
"/org/apache/tools/ant/types/defaults.properties";

/**
* Reference to the current Ant executor
* Reference to the current Ant executor.
* Value: {@value}
*/
public static final String ANT_EXECUTOR_REFERENCE = "ant.executor";
@@ -96,30 +98,33 @@ public final class MagicNames {
*/
public static final String ANT_EXECUTOR_CLASSNAME = "ant.executor.class";
/**
* property name for basedir of the project
* property name for basedir of the project.
* Value: {@value}
*/
public static final String PROJECT_BASEDIR = "basedir";
/**
* property for ant file name
* property for ant file name.
* Value: {@value}
*/
public static final String ANT_FILE = "ant.file";

/**
* Property used to store the java version ant is running in.
* Value: {@value}
* @since Ant 1.7
*/
public static final String ANT_JAVA_VERSION = "ant.java.version";

/**
* Property used to store the location of ant.
* Value: {@value}
* @since Ant 1.7
*/
public static final String ANT_HOME = Launcher.ANTHOME_PROPERTY;

/**
* Property used to store the location of the ant library (typically the ant.jar file.)
* Value: {@value}
* @since Ant 1.7
*/
public static final String ANT_LIB = "ant.core.lib";
@@ -147,7 +152,7 @@ public final class MagicNames {
public static final String BUILD_JAVAC_TARGET = "ant.build.javac.target";

/**
* Name of the magic property that controls classloader reuse
* Name of the magic property that controls classloader reuse.
* @since Ant 1.4.
* Value: {@value}
*/
@@ -160,7 +165,7 @@ public final class MagicNames {
public static final String REFID_CLASSPATH_LOADER_PREFIX = "ant.loader.";

/**
* Reference used to store the property helper
* Reference used to store the property helper.
* Value: {@value}
*/
public static final String REFID_PROPERTY_HELPER = "ant.PropertyHelper";


Loading…
Cancel
Save