X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/impl/IntConstant.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/impl/IntConstant.java index 87e2e3e..c9c1837 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/impl/IntConstant.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/impl/IntConstant.java @@ -11,43 +11,43 @@ package net.sourceforge.phpdt.internal.compiler.impl; public class IntConstant extends Constant { - + int value; - + public IntConstant(int 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 + // spec 15.17.11 String s = new Integer(value).toString(); if (s == null) return "null"; //$NON-NLS-1$ @@ -57,7 +57,7 @@ public class IntConstant extends Constant { public String toString() { return "(int)" + value; //$NON-NLS-1$ - } + } public int typeID() { return T_int;