blob: f1deced86ee640f0a8951f0e29596b053d870a56 [file] [log] [blame]
/**
* Copyright (c) 2015 Obeo.
* 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:
* Obeo - initial API and implementation and/or initial documentation
* ...
*
*/
package org.eclipse.intent.mapping;
import org.eclipse.emf.common.util.EList;
import org.eclipse.intent.mapping.base.IBase;
import org.eclipse.intent.mapping.base.ILocation;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Base</b></em>'. <!-- end-user-doc -->
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.intent.mapping.Base#getRootLocations <em>Root Locations</em>}</li>
* <li>{@link org.eclipse.intent.mapping.Base#getName <em>Name</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.intent.mapping.MappingPackage#getBase()
* @model
* @generated NOT
*/
public interface Base extends IEMFBaseElement, LocationContainer, IBase {
/**
* Returns the value of the '<em><b>Root Locations</b></em>' containment reference list. The list contents
* are of type {@link org.eclipse.intent.mapping.Location}. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Root Locations</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>Root Locations</em>' containment reference list.
* @see org.eclipse.intent.mapping.MappingPackage#getBase_RootLocations()
* @model containment="true"
* @generated NOT
*/
EList<ILocation> getContents();
/**
* Returns the value of the '<em><b>Name</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a
* description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.intent.mapping.MappingPackage#getBase_Name()
* @model required="true"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.intent.mapping.Base#getName <em>Name</em>}' attribute. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // Base