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 / IntConstant.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 IntConstant extends Constant {
14
15         int value;
16
17         public IntConstant(int 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                 // spec 15.17.11
51                 String s = new Integer(value).toString();
52                 if (s == null)
53                         return "null"; //$NON-NLS-1$
54                 else
55                         return s;
56         }
57
58         public String toString() {
59                 return "(int)" + value; //$NON-NLS-1$
60         }
61
62         public int typeID() {
63                 return T_int;
64         }
65 }