blob: 19942147f57c1d82735e8082c3ec38a9872b7c65 [file] [log] [blame]
/***************************************************************************************************
* Copyright (c) 2003, 2004 IBM Corporation and others. 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
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors: IBM Corporation - initial API and implementation
**************************************************************************************************/
package org.eclipse.jst.j2ee.internal.project;
public interface IJ2EEProjectTypes {
int SOURCE = 1;
int BINARY = 2;
int DEFAULT = 3;
int UTIL = 4;
int EJB_CLIENT = 5;
int MODULE = 6;
int EJB_MODULE = 7;
int WEB_MODULE = 8;
int JCA_MODULE = 9;
int APPCLIENT_MODULE = 10;
}