You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by do...@apache.org on 2002/03/03 07:42:59 UTC

cvs commit: jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/framework TaskList.java

donaldp     02/03/02 22:42:59

  Added:       proposal/myrmidon/src/java/org/apache/myrmidon/framework
                        TaskList.java
  Removed:     proposal/myrmidon/src/java/org/apache/antlib/core
                        TaskList.java
  Log:
  Move Tasklist into framework as it is being used everywhere
  
  Revision  Changes    Path
  1.1                  jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/framework/TaskList.java
  
  Index: TaskList.java
  ===================================================================
  /*
   * Copyright (C) The Apache Software Foundation. All rights reserved.
   *
   * This software is published under the terms of the Apache Software License
   * version 1.1, a copy of which has been included  with this distribution in
   * the LICENSE.txt file.
   */
  package org.apache.myrmidon.framework;
  
  import java.util.ArrayList;
  import org.apache.avalon.framework.configuration.Configuration;
  
  /**
   * This object contains an ordered list of tasks.
   *
   * @author <a href="mailto:peter@apache.org">Peter Donald</a>
   * @version $Revision: 1.1 $ $Date: 2002/03/03 06:42:59 $
   */
  public class TaskList
  {
      private ArrayList m_tasks = new ArrayList();
  
      public void add( final Configuration task )
      {
          m_tasks.add( task );
      }
  
      public Configuration[] getTasks()
      {
          return (Configuration[])m_tasks.toArray( new Configuration[ m_tasks.size() ] );
      }
  }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>