blob: f066f8bafed82a577f72db90431d355eaa99e591 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 BEA Systems, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* tyeung@bea.com - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.apt.core.internal.env;
public interface ITypeConstants {
static final String BOOLEAN = "boolean"; //$NON-NLS-1$
static final String BYTE = "byte"; //$NON-NLS-1$
static final String CHAR = "char"; //$NON-NLS-1$
static final String DOUBLE = "double"; //$NON-NLS-1$
static final String FLOAT = "float"; //$NON-NLS-1$
static final String INT = "int"; //$NON-NLS-1$
static final String LONG = "long"; //$NON-NLS-1$
static final String SHORT = "short"; //$NON-NLS-1$
static final String VOID = "void"; //$NON-NLS-1$
}