blob: 95216673643f83935108cc5b0ece12fb6c660ce1 [file] [log] [blame]
/**
* Copyright (c) 2010 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)
*
* $Id: InterpreterInfo.java,v 1.1 2010/05/23 14:20:39 apanchenk Exp $
*/
package org.eclipse.dltk.launching.model;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Interpreter Info</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* The container for the particular interpreter information.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.dltk.launching.model.InterpreterInfo#getEnvironment <em>Environment</em>}</li>
* <li>{@link org.eclipse.dltk.launching.model.InterpreterInfo#getLocation <em>Location</em>}</li>
* <li>{@link org.eclipse.dltk.launching.model.InterpreterInfo#getContents <em>Contents</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.dltk.launching.model.LaunchingModelPackage#getInterpreterInfo()
* @model
* @generated
*/
public interface InterpreterInfo extends EObject {
/**
* Returns the value of the '<em><b>Environment</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Environment of the interpreter
* <!-- end-model-doc -->
* @return the value of the '<em>Environment</em>' attribute.
* @see #setEnvironment(String)
* @see org.eclipse.dltk.launching.model.LaunchingModelPackage#getInterpreterInfo_Environment()
* @model
* @generated
*/
String getEnvironment();
/**
* Sets the value of the '{@link org.eclipse.dltk.launching.model.InterpreterInfo#getEnvironment <em>Environment</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Environment</em>' attribute.
* @see #getEnvironment()
* @generated
*/
void setEnvironment(String value);
/**
* Returns the value of the '<em><b>Location</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Location (local path) of the interpreter
* <!-- end-model-doc -->
* @return the value of the '<em>Location</em>' attribute.
* @see #setLocation(String)
* @see org.eclipse.dltk.launching.model.LaunchingModelPackage#getInterpreterInfo_Location()
* @model
* @generated
*/
String getLocation();
/**
* Sets the value of the '{@link org.eclipse.dltk.launching.model.InterpreterInfo#getLocation <em>Location</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Location</em>' attribute.
* @see #getLocation()
* @generated
*/
void setLocation(String value);
/**
* Returns the value of the '<em><b>Contents</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.emf.ecore.EObject}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Collection of the objects related to this interpreter.
* <!-- end-model-doc -->
* @return the value of the '<em>Contents</em>' containment reference list.
* @see org.eclipse.dltk.launching.model.LaunchingModelPackage#getInterpreterInfo_Contents()
* @model containment="true"
* @generated
*/
EList<EObject> getContents();
} // InterpreterInfo