Rewritten Parser/Scanner to package net.sourceforge.phpdt.internal.compiler.parser
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / impl / FloatConstant.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/impl/FloatConstant.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/impl/FloatConstant.java
deleted file mode 100644 (file)
index 92570bc..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
- * All rights reserved. This program and the accompanying materials 
- * are made available under the terms of the Common Public License v0.5 
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
- * 
- * Contributors:
- *     IBM Corporation - initial API and implementation
- ******************************************************************************/
-package net.sourceforge.phpdt.internal.compiler.impl;
-
-public class FloatConstant extends Constant {
-       
-       float value;
-       
-       public FloatConstant(float value) {
-               this.value = value;
-       }
-       
-       public byte byteValue() {
-               return (byte) value;
-       }
-       
-       public char charValue() {
-               return (char) value;
-       }
-       
-       public double doubleValue() {
-               return (double) value;
-       }
-       
-       public float floatValue() {
-               return (float) value;
-       }
-       
-       public int intValue() {
-               return (int) value;
-       }
-       
-       public long longValue() {
-               return (long) value;
-       }
-       
-       public short shortValue() {
-               return (short) value;
-       }
-       
-       public String stringValue() {
-               //spec 15.17.11
-               String s = new Float(value).toString();
-               if (s == null)
-                       return "null"; //$NON-NLS-1$
-               else
-                       return s;
-       }
-
-       public String toString() {
-               return "(float)" + value; //$NON-NLS-1$
-       } 
-
-       public int typeID() {
-               return T_float;
-       }
-}
\ No newline at end of file