You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avalon.apache.org by fr...@apache.org on 2001/11/13 19:10:03 UTC

cvs commit: jakarta-avalon-cornerstone/apps/db/src/java/org/apache/avalon/db/functions Function.java

froehlich    01/11/13 10:10:03

  Added:       apps/db/src/java/org/apache/avalon/db/functions
                        Function.java
  Log:
  
  
  Revision  Changes    Path
  1.1                  jakarta-avalon-cornerstone/apps/db/src/java/org/apache/avalon/db/functions/Function.java
  
  Index: Function.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.avalon.db.functions;
  
  import org.apache.avalon.db.actions.ActionException;
  import org.apache.avalon.db.data.Row;
  import org.apache.avalon.framework.logger.LogEnabled;
  
  /**
   * Interface Function
   *
   * @author Gerhard Froehlich <a href="mailto:g-froehlich@gmx.de">g-froehlich@gmx.de</a>
   * @version * $Revision: 1.1 $
   */
  public interface Function extends LogEnabled {
      void initialize(String[] columns) throws ActionException;
      void execute(Row row) throws ActionException;
  }
  
  
  

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