/** * <copyright> * </copyright> * * $Id$ */ package net.opengis.fes20; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.util.FeatureMap; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Function Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.opengis.fes20.FunctionType#getExpressionGroup <em>Expression Group</em>}</li> * <li>{@link net.opengis.fes20.FunctionType#getExpression <em>Expression</em>}</li> * <li>{@link net.opengis.fes20.FunctionType#getName <em>Name</em>}</li> * </ul> * </p> * * @see net.opengis.fes20.Fes20Package#getFunctionType() * @model extendedMetaData="name='FunctionType' kind='elementOnly'" * @generated */ public interface FunctionType extends EObject { /** * Returns the value of the '<em><b>Expression Group</b></em>' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Expression Group</em>' attribute list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Expression Group</em>' attribute list. * @see net.opengis.fes20.Fes20Package#getFunctionType_ExpressionGroup() * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" * extendedMetaData="kind='group' name='expression:group' namespace='##targetNamespace'" * @generated */ FeatureMap getExpressionGroup(); /** * Returns the value of the '<em><b>Expression</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.emf.ecore.EObject}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Expression</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Expression</em>' containment reference list. * @see net.opengis.fes20.Fes20Package#getFunctionType_Expression() * @model containment="true" transient="true" changeable="false" volatile="true" derived="true" * extendedMetaData="kind='element' name='expression' namespace='##targetNamespace' group='expression:group'" * @generated */ EList<EObject> getExpression(); /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see net.opengis.fes20.Fes20Package#getFunctionType_Name() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='name'" * @generated */ String getName(); /** * Sets the value of the '{@link net.opengis.fes20.FunctionType#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); } // FunctionType