removed Makefile; lifted repo/org.ibex.tool/src/ to src/
[org.ibex.tool.git] / src / org / eclipse / jdt / internal / compiler / impl / FloatConstant.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package org.eclipse.jdt.internal.compiler.impl;
12
13 public class FloatConstant extends Constant {
14         
15         float value;
16         
17         public FloatConstant(float value) {
18                 this.value = value;
19         }
20         
21         public byte byteValue() {
22                 return (byte) value;
23         }
24         
25         public char charValue() {
26                 return (char) value;
27         }
28         
29         public double doubleValue() {
30                 return value; // implicit cast to return type
31         }
32         
33         public float floatValue() {
34                 return this.value;
35         }
36         
37         public int intValue() {
38                 return (int) value;
39         }
40         
41         public long longValue() {
42                 return (long) value;
43         }
44         
45         public short shortValue() {
46                 return (short) value;
47         }
48         
49         public String stringValue() {
50                 String s = Float.toString(value);
51                 if (s == null) return "null"; //$NON-NLS-1$
52                 return s;
53         }
54
55         public String toString() {
56                 return "(float)" + value; //$NON-NLS-1$
57         } 
58
59         public int typeID() {
60                 return T_float;
61         }
62 }