blob: be43c6f7fc1b3eebb0615799dc0eec9461f9fad1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2006 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.jee.ui.internal.navigator.dnd;
import org.eclipse.jst.j2ee.internal.plugin.IJ2EEModuleConstants;
//@deprecated @see org.eclipse.jst.j2ee.internal.plugin.IJ2EEModuleConstants
public interface IModuleExtensions {
public String DOT_WAR = IJ2EEModuleConstants.WAR_EXT;
public String DOT_JAR = IJ2EEModuleConstants.JAR_EXT;
public String DOT_RAR = IJ2EEModuleConstants.RAR_EXT;
public String DOT_EAR = IJ2EEModuleConstants.EAR_EXT;
}