Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.wst.common.modulecore/modulecore-src/org/eclipse/wst/common/componentcore/internal/util/IModuleConstants.java')
-rw-r--r--plugins/org.eclipse.wst.common.modulecore/modulecore-src/org/eclipse/wst/common/componentcore/internal/util/IModuleConstants.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/plugins/org.eclipse.wst.common.modulecore/modulecore-src/org/eclipse/wst/common/componentcore/internal/util/IModuleConstants.java b/plugins/org.eclipse.wst.common.modulecore/modulecore-src/org/eclipse/wst/common/componentcore/internal/util/IModuleConstants.java
deleted file mode 100644
index 19dcbf96e..000000000
--- a/plugins/org.eclipse.wst.common.modulecore/modulecore-src/org/eclipse/wst/common/componentcore/internal/util/IModuleConstants.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2003, 2005 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.wst.common.componentcore.internal.util;
-
-import org.eclipse.core.runtime.Path;
-
-/**
- * <p>
- * The following class is experimental until fully documented.
- * </p>
- */
-public interface IModuleConstants {
-
- public final static String COMPONENT_FILE_NAME = ".component"; //$NON-NLS-1$
- public final static Path COMPONENT_FILE_PATH = new Path(".settings/"+COMPONENT_FILE_NAME); //$NON-NLS-1$
- public final static String WTPMODULE_FILE_NAME = ".wtpmodules"; //$NON-NLS-1$
- public final static Path WTPMODULE_FILE_PATH = new Path(WTPMODULE_FILE_NAME); //$NON-NLS-1$
- public final static String MODULE_PLUG_IN_ID = "org.eclipse.wst.common.modulecore"; //$NON-NLS-1$
- public final static String MODULE_NATURE_ID = "org.eclipse.wst.common.modulecore.ModuleCoreNature"; //$NON-NLS-1$
-
- //moduleTypes
- public final static String JST_WEB_MODULE = "jst.web"; //$NON-NLS-1$
- public final static String JST_EJB_MODULE = "jst.ejb"; //$NON-NLS-1$
- public final static String JST_UTILITY_MODULE = "jst.utility"; //$NON-NLS-1$
- public final static String WST_WEB_MODULE = "wst.web"; //$NON-NLS-1$
- public final static String JST_EAR_MODULE = "jst.ear"; //$NON-NLS-1$
- public final static String JST_APPCLIENT_MODULE = "jst.appclient"; //$NON-NLS-1$
- public final static String JST_CONNECTOR_MODULE = "jst.connector"; //$NON-NLS-1$
- public final static String JST_JAVA = "jst.java"; //$NON-NLS-1$
-
- public final static String DEPENDENT_MODULE = "dependent"; //$NON-NLS-1$
-
- //Property Constants
- public final static String PROJ_REL_JAVA_OUTPUT_PATH = "java-output-path"; //$NON-NLS-1$
-
- public final static String CONTEXTROOT = "context-root"; //$NON-NLS-1$
-
-}

Back to the top