blob: 677e7610f8794975e14336791416e4d88f68d1b6 [file] [log] [blame]
/**
* * Copyright (c) 2006-2010 Istvan Rath and Daniel Varro
* * All rights reserved. This program and the accompanying materials
* * are made available under the terms of the Eclipse Public License v1.0
* * which accompanies this distribution, and is available at
* * http://www.eclipse.org/legal/epl-v10.html
* *
* * Contributors:
* * Istvan Rath, Daniel Varro - initial API and implementation
*
*/
package org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.gt;
import org.eclipse.emf.common.util.EList;
import org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.asm.core.GTASMElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Pattern Container</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.gt.PatternContainer#getGtPatternDefinitions <em>Gt Pattern Definitions</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.gt.GtPackage#getPatternContainer()
* @model abstract="true"
* @generated
*/
public interface PatternContainer extends GTASMElement
{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = " * Copyright (c) 2006-2010 Istvan Rath and Daniel Varro\r\n * All rights reserved. This program and the accompanying materials\r\n * are made available under the terms of the Eclipse Public License v1.0\r\n * which accompanies this distribution, and is available at\r\n * http://www.eclipse.org/legal/epl-v10.html\r\n *\r\n * Contributors:\r\n * Istvan Rath, Daniel Varro - initial API and implementation\r\n";
/**
* Returns the value of the '<em><b>Gt Pattern Definitions</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.gt.GTPattern}.
* It is bidirectional and its opposite is '{@link org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.gt.GTPattern#getContainer <em>Container</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Gt Pattern Definitions</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>Gt Pattern Definitions</em>' containment reference list.
* @see org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.gt.GtPackage#getPatternContainer_GtPatternDefinitions()
* @see org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.gt.GTPattern#getContainer
* @model opposite="container" containment="true"
* @generated
*/
EList<GTPattern> getGtPatternDefinitions();
} // PatternContainer