/** */ package org.erlide.erlang; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Guard</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.erlide.erlang.Guard#getGuards <em>Guards</em>}</li> * </ul> * * @see org.erlide.erlang.ErlangPackage#getGuard() * @model * @generated */ public interface Guard extends EObject { /** * Returns the value of the '<em><b>Guards</b></em>' containment reference * list. The list contents are of type {@link org.erlide.erlang.Expressions} * . <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Guards</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>Guards</em>' containment reference list. * @see org.erlide.erlang.ErlangPackage#getGuard_Guards() * @model containment="true" * @generated */ EList<Expressions> getGuards(); } // Guard