A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / impl / DoubleConstant.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 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 net.sourceforge.phpdt.internal.compiler.impl;
12
13 public class DoubleConstant extends Constant {
14
15         double value;
16
17         public DoubleConstant(double 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 (double) value;
31         }
32
33         public float floatValue() {
34                 return (float) 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 = Double.toString(value);
51                 if (s == null)
52                         return "null"; //$NON-NLS-1$
53                 else
54                         return s;
55         }
56
57         public String toString() {
58                 if (this == NotAConstant)
59                         return "(Constant) NotAConstant"; //$NON-NLS-1$
60                 return "(double)" + value; //$NON-NLS-1$
61         }
62
63         public int typeID() {
64                 return T_double;
65         }
66 }