blob: 1844c91a2f793f1e18e9f8f1a39fb5880450979f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Vrije Universiteit Brussel.
* 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Dennis Wagelaar, Vrije Universiteit Brussel - initial API and
* implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.m2m.atl.emftvm;
import org.eclipse.emf.ecore.EClassifier;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Feature</b></em>'.
* @author <a href="mailto:dennis.wagelaar@vub.ac.be">Dennis Wagelaar</a>
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.m2m.atl.emftvm.Feature#isStatic <em>Static</em>}</li>
* <li>{@link org.eclipse.m2m.atl.emftvm.Feature#getEContext <em>EContext</em>}</li>
* <li>{@link org.eclipse.m2m.atl.emftvm.Feature#getModule <em>Module</em>}</li>
* <li>{@link org.eclipse.m2m.atl.emftvm.Feature#getContext <em>Context</em>}</li>
* <li>{@link org.eclipse.m2m.atl.emftvm.Feature#getContextModel <em>Context Model</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.m2m.atl.emftvm.EmftvmPackage#getFeature()
* @model abstract="true"
* @generated
*/
public interface Feature extends TypedElement {
/**
* Returns the value of the '<em><b>Static</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Static</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Static</em>' attribute.
* @see #setStatic(boolean)
* @see org.eclipse.m2m.atl.emftvm.EmftvmPackage#getFeature_Static()
* @model
* @generated
*/
boolean isStatic();
/**
* Sets the value of the '{@link org.eclipse.m2m.atl.emftvm.Feature#isStatic <em>Static</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Static</em>' attribute.
* @see #isStatic()
* @generated
*/
void setStatic(boolean value);
/**
* Returns the value of the '<em><b>EContext</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>EContext</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>EContext</em>' reference.
* @see #setEContext(EClassifier)
* @see org.eclipse.m2m.atl.emftvm.EmftvmPackage#getFeature_EContext()
* @model transient="true" derived="true"
* @generated
*/
EClassifier getEContext();
/**
* Sets the value of the '{@link org.eclipse.m2m.atl.emftvm.Feature#getEContext <em>EContext</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>EContext</em>' reference.
* @see #getEContext()
* @generated
*/
void setEContext(EClassifier value);
/**
* Returns the value of the '<em><b>Context</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Context</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Context</em>' attribute.
* @see #setContext(String)
* @see org.eclipse.m2m.atl.emftvm.EmftvmPackage#getFeature_Context()
* @model required="true"
* @generated
*/
String getContext();
/**
* Sets the value of the '{@link org.eclipse.m2m.atl.emftvm.Feature#getContext <em>Context</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Context</em>' attribute.
* @see #getContext()
* @generated
*/
void setContext(String value);
/**
* Returns the value of the '<em><b>Context Model</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Context Model</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Context Model</em>' attribute.
* @see #setContextModel(String)
* @see org.eclipse.m2m.atl.emftvm.EmftvmPackage#getFeature_ContextModel()
* @model required="true"
* @generated
*/
String getContextModel();
/**
* Sets the value of the '{@link org.eclipse.m2m.atl.emftvm.Feature#getContextModel <em>Context Model</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Context Model</em>' attribute.
* @see #getContextModel()
* @generated
*/
void setContextModel(String value);
/**
* Returns the value of the '<em><b>Module</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.m2m.atl.emftvm.Module#getFeatures <em>Features</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Module</em>' container reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Module</em>' container reference.
* @see #setModule(Module)
* @see org.eclipse.m2m.atl.emftvm.EmftvmPackage#getFeature_Module()
* @see org.eclipse.m2m.atl.emftvm.Module#getFeatures
* @model opposite="features" transient="false"
* @generated
*/
Module getModule();
/**
* Sets the value of the '{@link org.eclipse.m2m.atl.emftvm.Feature#getModule <em>Module</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Module</em>' container reference.
* @see #getModule()
* @generated
*/
void setModule(Module value);
} // Feature