Added Serialization UID where required.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141259 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark R. Diggory 2004-06-01 21:35:13 +00:00
parent 01f63cf801
commit 3126cdce8e
2 changed files with 8 additions and 2 deletions

View File

@ -26,10 +26,13 @@ import org.apache.commons.math.MathException;
* into a primitive double or to turn a String representation of a Number into
* a double.
*
* @version $Revision: 1.13 $ $Date: 2004/03/21 21:57:19 $
* @version $Revision: 1.14 $ $Date: 2004/06/01 21:35:13 $
*/
public class DefaultTransformer implements NumberTransformer, Serializable {
/** Serializable version identifier */
static final long serialVersionUID = 4019938025047800455L;
/**
* @param o the object that gets transformed.
* @return a double primitive representation of the Object o.

View File

@ -28,10 +28,13 @@ import org.apache.commons.math.MathException;
* It provides a means to set NumberTransformers that will be selected
* based on the Class of the object handed to the Maps
* <code>double transform(Object o)</code> method.
* @version $Revision: 1.12 $ $Date: 2004/04/23 19:50:27 $
* @version $Revision: 1.13 $ $Date: 2004/06/01 21:35:13 $
*/
public class TransformerMap implements NumberTransformer, Serializable {
/** Serializable version identifier */
static final long serialVersionUID = -942772950698439883L;
/**
* A default Number Transformer for Numbers and numeric Strings.
*/