blob: 22c24a8ff6c8ae5b3834ceb37a1dc2139eb3a9fb [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.ui.wizards;
import java.net.URI;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IPath;
import org.eclipse.dltk.core.environment.IEnvironment;
import org.eclipse.dltk.launching.IInterpreterInstall;
public interface ILocationGroup {
String getProjectName();
IProject getProjectHandle();
IEnvironment getEnvironment();
IPath getLocation();
/**
* @since 2.0
*/
URI getLocationURI();
/**
* @since 2.0
*/
IInterpreterInstall getInterpreter();
/**
* Test if buildpath detection should be performed by the project wizard.
* This is usually the case when project is created at existing location.
*
* @return <code>true</code> if buildpath detection should be performed and
* <code>false</code> if default buildpath should be used.
*/
boolean getDetect();
/**
* Test if project is being created at already existing location
*
* @return
* @since 2.0
*/
boolean isExistingLocation();
/**
* @return
* @since 2.0
*/
boolean isInWorkspace();
/**
* @return
* @since 2.0
*/
boolean isSrc();
/**
* @return
* @since 2.0
*/
String getScriptNature();
}