You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.8 KiB
51 lines
1.8 KiB
/******************************************************************************* |
|
* Copyright (c) 2018 IRT AESE (IRT Saint Exupéry). |
|
* All rights reserved. This program and the accompanying materials |
|
* are made available under the terms of the Eclipse Public License v2.0 |
|
* which accompanies this distribution, and is available at |
|
* https://www.eclipse.org/legal/epl-2.0 |
|
* |
|
* Contributors: |
|
* Arnaud Dieumegard (IRT Saint Exupéry) - initial API and implementation |
|
*******************************************************************************/ |
|
/** |
|
*/ |
|
package com.irtsaintexupery.pseim.pseim; |
|
|
|
import com.irtsaintexupery.pseim.seim.NamedElement; |
|
import org.eclipse.emf.common.util.EList; |
|
|
|
/** |
|
* <!-- begin-user-doc --> |
|
* A representation of the model object '<em><b>Library</b></em>'. |
|
* <!-- end-user-doc --> |
|
* |
|
* <p> |
|
* The following features are supported: |
|
* </p> |
|
* <ul> |
|
* <li>{@link com.irtsaintexupery.pseim.pseim.Library#getPatterns <em>Patterns</em>}</li> |
|
* </ul> |
|
* |
|
* @see com.irtsaintexupery.pseim.pseim.PseimPackage#getLibrary() |
|
* @model |
|
* @generated |
|
*/ |
|
public interface Library extends NamedElement { |
|
/** |
|
* Returns the value of the '<em><b>Patterns</b></em>' containment reference list. |
|
* The list contents are of type {@link com.irtsaintexupery.pseim.pseim.Pattern}. |
|
* <!-- begin-user-doc --> |
|
* <p> |
|
* If the meaning of the '<em>Patterns</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>Patterns</em>' containment reference list. |
|
* @see com.irtsaintexupery.pseim.pseim.PseimPackage#getLibrary_Patterns() |
|
* @model containment="true" |
|
* @generated |
|
*/ |
|
EList<Pattern> getPatterns(); |
|
|
|
} // Library
|
|
|