
org.integratedmodelling.kim.kim.LookupFunction Maven / Gradle / Ivy
/**
* generated by Xtext 2.9.2
*/
package org.integratedmodelling.kim.kim;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Lookup Function'.
*
*
*
* The following features are supported:
*
*
* - {@link org.integratedmodelling.kim.kim.LookupFunction#getArgs Args}
* - {@link org.integratedmodelling.kim.kim.LookupFunction#getTable Table}
* - {@link org.integratedmodelling.kim.kim.LookupFunction#getRef Ref}
* - {@link org.integratedmodelling.kim.kim.LookupFunction#getId Id}
* - {@link org.integratedmodelling.kim.kim.LookupFunction#getExpression Expression}
* - {@link org.integratedmodelling.kim.kim.LookupFunction#getFunction Function}
*
*
* @see org.integratedmodelling.kim.kim.KimPackage#getLookupFunction()
* @model
* @generated
*/
public interface LookupFunction extends EObject
{
/**
* Returns the value of the 'Args' attribute list.
* The list contents are of type {@link java.lang.String}.
*
*
* If the meaning of the 'Args' attribute list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Args' attribute list.
* @see org.integratedmodelling.kim.kim.KimPackage#getLookupFunction_Args()
* @model unique="false"
* @generated
*/
EList getArgs();
/**
* Returns the value of the 'Table' containment reference.
*
*
* If the meaning of the 'Table' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Table' containment reference.
* @see #setTable(Table)
* @see org.integratedmodelling.kim.kim.KimPackage#getLookupFunction_Table()
* @model containment="true"
* @generated
*/
Table getTable();
/**
* Sets the value of the '{@link org.integratedmodelling.kim.kim.LookupFunction#getTable Table}' containment reference.
*
*
* @param value the new value of the 'Table' containment reference.
* @see #getTable()
* @generated
*/
void setTable(Table value);
/**
* Returns the value of the 'Ref' attribute.
*
*
* If the meaning of the 'Ref' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Ref' attribute.
* @see #setRef(String)
* @see org.integratedmodelling.kim.kim.KimPackage#getLookupFunction_Ref()
* @model
* @generated
*/
String getRef();
/**
* Sets the value of the '{@link org.integratedmodelling.kim.kim.LookupFunction#getRef Ref}' attribute.
*
*
* @param value the new value of the 'Ref' attribute.
* @see #getRef()
* @generated
*/
void setRef(String value);
/**
* Returns the value of the 'Id' attribute.
*
*
* If the meaning of the 'Id' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Id' attribute.
* @see #setId(String)
* @see org.integratedmodelling.kim.kim.KimPackage#getLookupFunction_Id()
* @model
* @generated
*/
String getId();
/**
* Sets the value of the '{@link org.integratedmodelling.kim.kim.LookupFunction#getId Id}' attribute.
*
*
* @param value the new value of the 'Id' attribute.
* @see #getId()
* @generated
*/
void setId(String value);
/**
* Returns the value of the 'Expression' attribute.
*
*
* If the meaning of the 'Expression' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Expression' attribute.
* @see #setExpression(String)
* @see org.integratedmodelling.kim.kim.KimPackage#getLookupFunction_Expression()
* @model
* @generated
*/
String getExpression();
/**
* Sets the value of the '{@link org.integratedmodelling.kim.kim.LookupFunction#getExpression Expression}' attribute.
*
*
* @param value the new value of the 'Expression' attribute.
* @see #getExpression()
* @generated
*/
void setExpression(String value);
/**
* Returns the value of the 'Function' containment reference.
*
*
* If the meaning of the 'Function' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Function' containment reference.
* @see #setFunction(Function)
* @see org.integratedmodelling.kim.kim.KimPackage#getLookupFunction_Function()
* @model containment="true"
* @generated
*/
Function getFunction();
/**
* Sets the value of the '{@link org.integratedmodelling.kim.kim.LookupFunction#getFunction Function}' containment reference.
*
*
* @param value the new value of the 'Function' containment reference.
* @see #getFunction()
* @generated
*/
void setFunction(Function value);
} // LookupFunction