blob: 10aa3de6739cbf823721db40a9bfed7fd2a78e40 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.semantic.uimodel;
import org.eclipse.emf.common.util.EList;
import org.eclipse.xtext.xtype.XImportSection;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ui Model</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiModel#getPackageName <em>Package Name</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiModel#getRoots <em>Roots</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiModel#getImportSection <em>Import Section</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiModel()
* @model
* @generated
*/
public interface UiModel extends UiNamedElement {
/**
* Returns the value of the '<em><b>Package Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Package Name</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Package Name</em>' attribute.
* @see #setPackageName(String)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiModel_PackageName()
* @model required="true"
* @generated
*/
String getPackageName();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiModel#getPackageName <em>Package Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Package Name</em>' attribute.
* @see #getPackageName()
* @generated
*/
void setPackageName(String value);
/**
* Returns the value of the '<em><b>Roots</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.ecview.semantic.uimodel.UiRootElements}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Roots</em>' containment reference list isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Roots</em>' containment reference list.
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiModel_Roots()
* @model containment="true" resolveProxies="true"
* @generated
*/
EList<UiRootElements> getRoots();
/**
* Returns the value of the '<em><b>Import Section</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Import Section</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Import Section</em>' containment reference.
* @see #setImportSection(XImportSection)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiModel_ImportSection()
* @model containment="true" resolveProxies="true"
* @generated
*/
XImportSection getImportSection();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiModel#getImportSection <em>Import Section</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Import Section</em>' containment reference.
* @see #getImportSection()
* @generated
*/
void setImportSection(XImportSection value);
} // UiModel