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 2001/06/04 14:38:18 UTC

cvs commit: jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/aspects AbstractAspectHandler.java AspectHandler.java

donaldp     01/06/04 05:38:18

  Added:       proposal/myrmidon/src/java/org/apache/myrmidon/aspects
                        AbstractAspectHandler.java AspectHandler.java
  Log:
  Starting to define/test aspect interface.
  
  Revision  Changes    Path
  1.1                  jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/aspects/AbstractAspectHandler.java
  
  Index: AbstractAspectHandler.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 file.
   */
  package org.apache.myrmidon.aspects;
  
  import org.apache.avalon.framework.configuration.Configuration;
  import org.apache.log.Logger;
  import org.apache.myrmidon.api.Task;
  import org.apache.myrmidon.api.TaskException;
  
  /**
   * AspectHandler is the interface through which aspects are handled.
   *
   * @author <a href="mailto:conor@apache.org">Conor MacNeill</a>
   * @author <a href="mailto:donaldp@apache.org">Peter Donald</a>
   */
  public abstract class AbstractAspectHandler
      implements AspectHandler
  {
      public Configuration preCreate( final Configuration configuration )
          throws TaskException
      {
          return configuration;
      }
  
      public void postCreate( final Task task )
          throws TaskException
      {
      }
  
      public void preLoggable( final Logger logger )
          throws TaskException
      {
      }
  
      public void preConfigure()
          throws TaskException
      {
      }
  
      public void preExecute()
          throws TaskException
      {
      }
  
      public void preDestroy()
          throws TaskException
      {
      }
  
      public boolean error( final TaskException te )
          throws TaskException
      {
          return false;
      }
  }
  
  
  
  1.1                  jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/aspects/AspectHandler.java
  
  Index: AspectHandler.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 file.
   */
  package org.apache.myrmidon.aspects;
  
  import org.apache.avalon.framework.configuration.Configuration;
  import org.apache.log.Logger;
  import org.apache.myrmidon.api.Task;
  import org.apache.myrmidon.api.TaskException;
  
  /**
   * AspectHandler is the interface through which aspects are handled.
   *
   * @author <a href="mailto:conor@apache.org">Conor MacNeill</a>
   * @author <a href="mailto:donaldp@apache.org">Peter Donald</a>
   */
  public interface AspectHandler
  {
      Configuration preCreate( Configuration configuration )
          throws TaskException;
  
      void postCreate( Task task )
          throws TaskException;
  
      void preLoggable( Logger logger )
          throws TaskException;
  
      void preConfigure()
          throws TaskException;
  
      void preExecute()
          throws TaskException;
  
      void preDestroy()
          throws TaskException;
  
      boolean error( TaskException te )
          throws TaskException;
  }