/*************************************************************************************************** * 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 * http://www.eclipse.org/legal/epl-v10.html * * 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; }