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$