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/04/07 03:59:27 UTC

cvs commit: jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/api TaskContext.java

donaldp     02/04/06 17:59:27

  Modified:    proposal/myrmidon/src/java/org/apache/myrmidon/api
                        TaskContext.java
  Log:
  Made getProeprties() throw an exception on error
  
  Revision  Changes    Path
  1.28      +3 -2      jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/api/TaskContext.java
  
  Index: TaskContext.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/api/TaskContext.java,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- TaskContext.java	26 Mar 2002 02:11:13 -0000	1.27
  +++ TaskContext.java	7 Apr 2002 01:59:27 -0000	1.28
  @@ -16,7 +16,7 @@
    * path between the container and the Task.
    *
    * @author <a href="mailto:peter@apache.org">Peter Donald</a>
  - * @version $Revision: 1.27 $ $Date: 2002/03/26 02:11:13 $
  + * @version $Revision: 1.28 $ $Date: 2002/04/07 01:59:27 $
    */
   public interface TaskContext
   {
  @@ -55,7 +55,8 @@
        *
        * @return the map of all property names to values
        */
  -    Map getProperties();
  +    Map getProperties()
  +        throws TaskException;
   
       /**
        * Retrieve a service that is offered by the runtime.
  
  
  

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