blob: bc5fa2c81f2903e25ba664bf523e673226e6dc52 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 xored software, Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.internal.debug.ui.interpreters;
import org.eclipse.dltk.core.environment.IEnvironment;
/**
* @since 2.0
*/
public interface IInterpreterComboBlockContext {
int M_BUILDPATH = 0;
int M_LAUNCH_CONFIGURATION = 1;
int getMode();
String getNatureId();
IEnvironment getEnvironment();
}