KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > apt > core > internal > env > ITypeConstants


1 /*******************************************************************************
2  * Copyright (c) 2005 BEA Systems, Inc.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * tyeung@bea.com - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.apt.core.internal.env;
12
13 public interface ITypeConstants {
14     static final String JavaDoc BOOLEAN = "boolean"; //$NON-NLS-1$
15
static final String JavaDoc BYTE = "byte"; //$NON-NLS-1$
16
static final String JavaDoc CHAR = "char"; //$NON-NLS-1$
17
static final String JavaDoc DOUBLE = "double"; //$NON-NLS-1$
18
static final String JavaDoc FLOAT = "float"; //$NON-NLS-1$
19
static final String JavaDoc INT = "int"; //$NON-NLS-1$
20
static final String JavaDoc LONG = "long"; //$NON-NLS-1$
21
static final String JavaDoc SHORT = "short"; //$NON-NLS-1$
22
static final String JavaDoc VOID = "void"; //$NON-NLS-1$
23
}
24
25
26
Popular Tags