/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.amalgam.tutorials.emf.droid; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Tab Activity</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.amalgam.tutorials.emf.droid.TabActivity#getTabs <em>Tabs</em>}</li> * <li>{@link org.eclipse.amalgam.tutorials.emf.droid.TabActivity#getActions <em>Actions</em>}</li> * </ul> * </p> * * @see org.eclipse.amalgam.tutorials.emf.droid.DroidPackage#getTabActivity() * @model * @generated */ public interface TabActivity extends Activity { /** * Returns the value of the '<em><b>Tabs</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.amalgam.tutorials.emf.droid.Tab}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Tabs</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>Tabs</em>' containment reference list. * @see org.eclipse.amalgam.tutorials.emf.droid.DroidPackage#getTabActivity_Tabs() * @model containment="true" * @generated */ EList<Tab> getTabs(); /** * Returns the value of the '<em><b>Actions</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.amalgam.tutorials.emf.droid.Action}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Actions</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>Actions</em>' containment reference list. * @see org.eclipse.amalgam.tutorials.emf.droid.DroidPackage#getTabActivity_Actions() * @model containment="true" * @generated */ EList<Action> getActions(); } // TabActivity