Updated serialVersionUID. Related to MATH-677.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1227477 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2012-01-05 04:15:09 +00:00
parent 74412ef81d
commit a244c199d4
5 changed files with 22 additions and 5 deletions

View File

@ -16,6 +16,8 @@
*/
package org.apache.commons.math.transform;
import java.io.Serializable;
import org.apache.commons.math.analysis.FunctionUtils;
import org.apache.commons.math.analysis.UnivariateFunction;
import org.apache.commons.math.complex.Complex;
@ -110,7 +112,11 @@ import org.apache.commons.math.util.FastMath;
* @version $Id$
* @since 1.2
*/
public class FastCosineTransformer implements RealTransformer {
public class FastCosineTransformer implements RealTransformer, Serializable {
/** Serializable version identifier. */
static final long serialVersionUID = 20120501L;
/**
* {@code true} if the orthogonal version of the DCT should be used.
*

View File

@ -89,7 +89,7 @@ import org.apache.commons.math.util.FastMath;
public class FastFourierTransformer implements Serializable {
/** Serializable version identifier. */
static final long serialVersionUID = 5138259215438106000L;
static final long serialVersionUID = 20120501L;
/**
* {@code true} if the unitary version of the DFT should be used.

View File

@ -16,6 +16,8 @@
*/
package org.apache.commons.math.transform;
import java.io.Serializable;
import org.apache.commons.math.analysis.FunctionUtils;
import org.apache.commons.math.analysis.UnivariateFunction;
import org.apache.commons.math.exception.MathIllegalArgumentException;
@ -35,7 +37,10 @@ import org.apache.commons.math.util.ArithmeticUtils;
* @version $Id$
* @since 2.0
*/
public class FastHadamardTransformer implements RealTransformer {
public class FastHadamardTransformer implements RealTransformer, Serializable {
/** Serializable version identifier. */
static final long serialVersionUID = 20120501L;
/**
* {@inheritDoc}

View File

@ -16,6 +16,8 @@
*/
package org.apache.commons.math.transform;
import java.io.Serializable;
import org.apache.commons.math.analysis.FunctionUtils;
import org.apache.commons.math.analysis.UnivariateFunction;
import org.apache.commons.math.complex.Complex;
@ -110,7 +112,11 @@ import org.apache.commons.math.util.FastMath;
* @version $Id: FastSineTransformer.java 1213157 2011-12-12 07:19:23Z celestin$
* @since 1.2
*/
public class FastSineTransformer implements RealTransformer {
public class FastSineTransformer implements RealTransformer, Serializable {
/** Serializable version identifier. */
static final long serialVersionUID = 20120501L;
/**
* {@code true} if the orthogonal version of the DCT should be used.
*

View File

@ -21,7 +21,7 @@ import org.apache.commons.math.complex.Complex;
/**
* Useful functions for the implementation of various transforms.
*
* @version $Id $
* @version $Id$
* @since 3.0
*/
public class TransformUtils {