blob: a017bfc03ca602b975cfdd9a21a0e3011c844826 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.core.ecl.context;
import org.eclipse.rcptt.core.scenario.Context;
import org.eclipse.rcptt.ecl.core.Script;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ecl Context</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rcptt.core.ecl.context.EclContext#getScript <em>Script</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rcptt.core.ecl.context.ContextPackage#getEclContext()
* @model
* @generated
*/
public interface EclContext extends Context {
/**
* Returns the value of the '<em><b>Script</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Script</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Script</em>' containment reference.
* @see #setScript(Script)
* @see org.eclipse.rcptt.core.ecl.context.ContextPackage#getEclContext_Script()
* @model containment="true"
* @generated
*/
Script getScript();
/**
* Sets the value of the '{@link org.eclipse.rcptt.core.ecl.context.EclContext#getScript <em>Script</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Script</em>' containment reference.
* @see #getScript()
* @generated
*/
void setScript(Script value);
} // EclContext