blob: 24ab45af8afc05a15f6fde4acc9e6816ec7e6291 [file] [log] [blame]
/*******************************************************************************
* CHESS core plugin
*
* Copyright (C) 2011-2015
* Mälardalen University, Sweden
*
*
* 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-v20.html
*******************************************************************************/
/**
*/
package org.polarsys.chess.fla.flaxml;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Components</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.polarsys.chess.fla.flaxml.Components#getComponent <em>Component</em>}</li>
* </ul>
* </p>
*
* @see org.polarsys.chess.fla.flaxml.FlaxmlPackage#getComponents()
* @model extendedMetaData="name='components' kind='elementOnly'"
* @generated
*/
public interface Components extends EObject {
/**
* Returns the value of the '<em><b>Component</b></em>' containment reference list.
* The list contents are of type {@link org.polarsys.chess.fla.flaxml.Component}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Component</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>Component</em>' containment reference list.
* @see org.polarsys.chess.fla.flaxml.FlaxmlPackage#getComponents_Component()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='component' namespace='##targetNamespace'"
* @generated
*/
EList<Component> getComponent();
} // Components