blob: 34fcdd1080d6f554bc21d631a2b48d3cd52471ea [file] [log] [blame]
/**
* Copyright (c) 2010 BestSolution.at and others.
* 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:
* Tom Schindl <tom.schindl@bestsolution.at> - initial API and implementation
* IBM Corporation - initial API and implementation
*/
package org.eclipse.e4.ui.model.fragment;
import java.util.List;
import org.eclipse.e4.ui.model.application.MApplicationElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Model Fragments</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* <p>
* <strong>Developers</strong>:
* Add more detailed documentation by editing this comment in
* /org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore.
* There is a GenModel/documentation node under each type and attribute.
* </p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.e4.ui.model.fragment.MModelFragments#getImports <em>Imports</em>}</li>
* <li>{@link org.eclipse.e4.ui.model.fragment.MModelFragments#getFragments <em>Fragments</em>}</li>
* </ul>
* </p>
*
* @model
* @generated
*/
public interface MModelFragments {
/**
* Returns the value of the '<em><b>Imports</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.e4.ui.model.application.MApplicationElement}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p>
* <strong>Developers</strong>:
* Add more detailed documentation by editing this comment in
* /org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore.
* There is a GenModel/documentation node under each type and attribute.
* </p>
* <!-- end-model-doc -->
* @return the value of the '<em>Imports</em>' containment reference list.
* @model containment="true"
* @generated
*/
List<MApplicationElement> getImports();
/**
* Returns the value of the '<em><b>Fragments</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.e4.ui.model.fragment.MModelFragment}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p>
* <strong>Developers</strong>:
* Add more detailed documentation by editing this comment in
* /org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore.
* There is a GenModel/documentation node under each type and attribute.
* </p>
* <!-- end-model-doc -->
* @return the value of the '<em>Fragments</em>' containment reference list.
* @model containment="true"
* @generated
*/
List<MModelFragment> getFragments();
} // MModelFragments