/******************************************************************************* * 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.EObject; /** * * A representation of the model object 'Input Rule Element'. * @author Dennis Wagelaar * * *

* The following features are supported: *

*

* * @see org.eclipse.m2m.atl.emftvm.EmftvmPackage#getInputRuleElement() * @model * @generated */ public interface InputRuleElement extends RuleElement { /** * Returns the value of the 'Binding' containment reference. * It is bidirectional and its opposite is '{@link org.eclipse.m2m.atl.emftvm.CodeBlock#getBindingFor Binding For}'. * *

* If the meaning of the 'Binding' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Binding' containment reference. * @see #setBinding(CodeBlock) * @see org.eclipse.m2m.atl.emftvm.EmftvmPackage#getInputRuleElement_Binding() * @see org.eclipse.m2m.atl.emftvm.CodeBlock#getBindingFor * @model opposite="bindingFor" containment="true" * @generated */ CodeBlock getBinding(); /** * Sets the value of the '{@link org.eclipse.m2m.atl.emftvm.InputRuleElement#getBinding Binding}' containment reference. * * * @param value the new value of the 'Binding' containment reference. * @see #getBinding() * @generated */ void setBinding(CodeBlock value); /** * Returns the value of the 'Input For' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.m2m.atl.emftvm.Rule#getInputElements Input Elements}'. * *

* If the meaning of the 'Input For' container reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Input For' container reference. * @see #setInputFor(Rule) * @see org.eclipse.m2m.atl.emftvm.EmftvmPackage#getInputRuleElement_InputFor() * @see org.eclipse.m2m.atl.emftvm.Rule#getInputElements * @model opposite="inputElements" transient="false" * @generated */ Rule getInputFor(); /** * Sets the value of the '{@link org.eclipse.m2m.atl.emftvm.InputRuleElement#getInputFor Input For}' container reference. * * * @param value the new value of the 'Input For' container reference. * @see #getInputFor() * @generated */ void setInputFor(Rule value); /** * Returns the value of the 'Maps To Self' attribute. * *

* If the meaning of the 'Maps To Self' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Maps To Self' attribute. * @see #setMapsToSelf(boolean) * @see org.eclipse.m2m.atl.emftvm.EmftvmPackage#getInputRuleElement_MapsToSelf() * @model required="true" * @generated */ boolean isMapsToSelf(); /** * Sets the value of the '{@link org.eclipse.m2m.atl.emftvm.InputRuleElement#isMapsToSelf Maps To Self}' attribute. * * * @param value the new value of the 'Maps To Self' attribute. * @see #isMapsToSelf() * @generated */ void setMapsToSelf(boolean value); /** * * Creates a new {@link Iterable} of possible match values for this rule element. * @param env the execution environment context * @return a new {@link Iterable} of possible match values for this rule element. * * @model dataType="org.eclipse.m2m.atl.emftvm.EJavaIterable" * @generated */ Iterable createIterable(ExecEnv env); } // InputRuleElement