/** * <copyright> * </copyright> * * $Id$ */ package org.yakindu.base.types; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Library</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.yakindu.base.types.Library#getTypes <em>Types</em>}</li> * <li>{@link org.yakindu.base.types.Library#getId <em>Id</em>}</li> * </ul> * </p> * * @see org.yakindu.base.types.TypesPackage#getLibrary() * @model * @generated */ public interface Library extends EObject { /** * Returns the value of the '<em><b>Types</b></em>' containment reference list. * The list contents are of type {@link org.yakindu.base.types.Type}. * It is bidirectional and its opposite is '{@link org.yakindu.base.types.Type#getOwningLibrary <em>Owning Library</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Types</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>Types</em>' containment reference list. * @see org.yakindu.base.types.TypesPackage#getLibrary_Types() * @see org.yakindu.base.types.Type#getOwningLibrary * @model opposite="owningLibrary" containment="true" * @generated */ EList<Type> getTypes(); /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see org.yakindu.base.types.TypesPackage#getLibrary_Id() * @model * @generated */ String getId(); /** * Sets the value of the '{@link org.yakindu.base.types.Library#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); } // Library