From 6ce9f71a543a7115856959a2771923192bee8035 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Tue, 27 Dec 2005 22:56:35 +0000 Subject: [PATCH] javadoc git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@359315 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/tools/ant/taskdefs/DefBase.java | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/DefBase.java b/src/main/org/apache/tools/ant/taskdefs/DefBase.java index b66eb4cbe..a5b4a39a0 100644 --- a/src/main/org/apache/tools/ant/taskdefs/DefBase.java +++ b/src/main/org/apache/tools/ant/taskdefs/DefBase.java @@ -25,8 +25,7 @@ import org.apache.tools.ant.types.Reference; import org.apache.tools.ant.util.ClasspathUtils; /** - * Base class for Definitions - * handling uri and class loading. + * Base class for Definitions handling uri and class loading. * (This was part of Definer) * * @since Ant 1.6 @@ -78,7 +77,7 @@ public abstract class DefBase extends AntlibDefinition { } /** - * Set the classpath to be used when searching for component being defined + * Set the classpath to be used when searching for component being defined. * * @param classpath an Ant Path object containing the classpath. */ @@ -88,7 +87,7 @@ public abstract class DefBase extends AntlibDefinition { /** * Create the classpath to be used when searching for component being - * defined + * defined. * @return the classpath of the this definition */ public Path createClasspath() { @@ -96,7 +95,7 @@ public abstract class DefBase extends AntlibDefinition { } /** - * reference to a classpath to use when loading the files. + * Set a reference to a classpath to use when loading the files. * To actually share the same loader, set loaderref as well * @param r the reference to the classpath */ @@ -106,11 +105,11 @@ public abstract class DefBase extends AntlibDefinition { /** * Use the reference to locate the loader. If the loader is not - * found, taskdef will use the specified classpath and register it + * found, the specified classpath will be used and registered * with the specified name. * - * This allow multiple taskdef/typedef to use the same class loader, - * so they can be used together. It eliminate the need to + * This allows multiple taskdef/typedef to use the same class loader, + * so they can be used together, eliminating the need to * put them in the CLASSPATH. * * @param r the reference to locate the loader.