Makefile fixup
[org.ibex.tool.git] / src / org / eclipse / jdt / internal / compiler / impl / IntConstant.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 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 value; // implicit cast to return type
31         }
32         
33         public float floatValue() {
34                 return value; // implicit cast to return type
35         }
36         
37         public int intValue() {
38                 return value;
39         }
40         
41         public long longValue() {
42                 return value; // implicit cast to return type
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) return "null"; //$NON-NLS-1$
53                 return s;
54         }
55
56         public String toString() {
57                 return "(int)" + value; //$NON-NLS-1$
58         } 
59
60         public int typeID() {
61                 return T_int;
62         }
63 }