From d9c407c42dbaf2b42fedc9a933991c171a3aac20 Mon Sep 17 00:00:00 2001 From: adammurdoch Date: Tue, 26 Mar 2002 02:11:13 +0000 Subject: [PATCH] Update javadocs. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272029 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/java/org/apache/myrmidon/api/TaskContext.java | 1 - .../src/java/org/apache/myrmidon/frontends/EmbeddedAnt.java | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/proposal/myrmidon/src/java/org/apache/myrmidon/api/TaskContext.java b/proposal/myrmidon/src/java/org/apache/myrmidon/api/TaskContext.java index a1cb17a3d..f616a5919 100644 --- a/proposal/myrmidon/src/java/org/apache/myrmidon/api/TaskContext.java +++ b/proposal/myrmidon/src/java/org/apache/myrmidon/api/TaskContext.java @@ -14,7 +14,6 @@ import java.util.Map; * This interface represents the Context in which Task is executed. * Like other Component APIs the TaskContext represents the communication * path between the container and the Task. - * Unlike other APIs the Logging is provided through another interface (LogEnabled). * * @author Peter Donald * @version $Revision$ $Date$ diff --git a/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/EmbeddedAnt.java b/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/EmbeddedAnt.java index 4033ef830..19e2d3d9c 100644 --- a/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/EmbeddedAnt.java +++ b/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/EmbeddedAnt.java @@ -26,6 +26,11 @@ import org.apache.myrmidon.listeners.ProjectListener; * A utility class, that takes care of launching Myrmidon, and building and * executing a project. * + *

To use this class, create an instance and configure. To execute + * targets in a project, use the {@link #executeTargets} method. This can + * be done one or more times. Finally, call the {@link #stop} method to + * clean-up. + * * @author Adam Murdoch * @author Peter Donald * @version $Revision$ $Date$