Added @since tags.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@924453 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2010-03-17 20:05:20 +00:00
parent 439cb994d1
commit e3f9ae2213
3 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,7 @@ import org.apache.commons.math.FunctionEvaluationException;
/**
* Base class for {@link BivariateRealFunction} that can be composed with other functions.
*
* @since 2.1
* @version $Revision$ $Date$
*/
public abstract class BinaryFunction implements BivariateRealFunction {

View File

@ -24,6 +24,7 @@ import org.apache.commons.math.FunctionEvaluationException;
/**
* An interface representing a bivariate real function.
*
* @since 2.1
* @version $Revision$ $Date$
*/
public interface BivariateRealFunction {

View File

@ -23,6 +23,7 @@ import org.apache.commons.math.FunctionEvaluationException;
/**
* Base class for {@link UnivariateRealFunction} that can be composed with other functions.
*
* @since 2.1
* @version $Revision$ $Date$
*/
public abstract class ComposableFunction implements UnivariateRealFunction {