001/** 002 */ 003package org.nasdanika.html.model.bootstrap; 004 005import org.eclipse.emf.common.util.EList; 006 007import org.eclipse.emf.ecore.EObject; 008 009/** 010 * <!-- begin-user-doc --> 011 * A representation of the model object '<em><b>Action Group Item</b></em>'. 012 * <!-- end-user-doc --> 013 * 014 * <!-- begin-model-doc --> 015 * Base class for action group items 016 * <!-- end-model-doc --> 017 * 018 * <p> 019 * The following features are supported: 020 * </p> 021 * <ul> 022 * <li>{@link org.nasdanika.html.model.bootstrap.ActionGroupItem#getName <em>Name</em>}</li> 023 * </ul> 024 * 025 * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getActionGroupItem() 026 * @model abstract="true" 027 * @generated 028 */ 029public interface ActionGroupItem extends Item { 030 /** 031 * Returns the value of the '<em><b>Name</b></em>' containment reference list. 032 * The list contents are of type {@link org.eclipse.emf.ecore.EObject}. 033 * <!-- begin-user-doc --> 034 * <!-- end-user-doc --> 035 * <!-- begin-model-doc --> 036 * Item name 037 * <!-- end-model-doc --> 038 * @return the value of the '<em>Name</em>' containment reference list. 039 * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getActionGroupItem_Name() 040 * @model containment="true" 041 * @generated 042 */ 043 EList<EObject> getName(); 044 045} // ActionGroupItem