KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > core > internal > databinding > conversion > NumberToFloatConverter


1 /*******************************************************************************
2  * Copyright (c) 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  ******************************************************************************/

11
12 package org.eclipse.core.internal.databinding.conversion;
13
14 import com.ibm.icu.text.NumberFormat;
15
16 /**
17  * Converts from a Number to a Float.
18  * <p>
19  * Class is thread safe.
20  * </p>
21  * @since 1.0
22  */

23 public class NumberToFloatConverter extends NumberToNumberConverter {
24     /**
25      * @param numberFormat
26      * @param fromType
27      * @param primitive
28      */

29     public NumberToFloatConverter(NumberFormat numberFormat, Class JavaDoc fromType,
30             boolean primitive) {
31         super(numberFormat, fromType, (primitive) ? Float.TYPE : Float JavaDoc.class);
32     }
33
34     /* (non-Javadoc)
35      * @see org.eclipse.core.internal.databinding.conversion.NumberToNumberConverter#doConvert(java.lang.Number)
36      */

37     protected Number JavaDoc doConvert(Number JavaDoc number) {
38         if (StringToNumberParser.inFloatRange(number)) {
39             return new Float JavaDoc(number.floatValue());
40         }
41         
42         return null;
43     }
44 }
45
Popular Tags