blob: ba6843d3202ae421a30c54234005ae1ea8a0d2ec [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2015-2021 Robert Bosch GmbH and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Generated using Eclipse EMF
*
* *******************************************************************************
*/
package org.eclipse.app4mc.amalthea.model;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>INamed</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* INamed: Name attribute
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.INamed#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.INamed#getQualifiedName <em>Qualified Name</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getINamed()
* @model interface="true" abstract="true"
* @generated
*/
public interface INamed extends EObject {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getINamed_Name()
* @model default="" unique="false"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.INamed#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);
/**
* Returns the value of the '<em><b>Qualified Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Qualified Name</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getINamed_QualifiedName()
* @model unique="false" transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
String getQualifiedName();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" unique="false"
* @generated
*/
INamed getNamedContainer();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" unique="false"
* @generated
*/
String getNamePrefix();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" unique="false"
* @generated
*/
EList<String> getQualifiedNameSegments();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Overwrite this method to define a specific name separator.
* <!-- end-model-doc -->
* @model kind="operation" unique="false"
* @generated
*/
String getDefaultNameSeparator();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" unique="false"
* @generated
*/
Namespace getNamespace();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Overwrite this method to define a specific prefix (used by name-based references).
* <!-- end-model-doc -->
* @model kind="operation" unique="false"
* @generated
*/
EList<String> getNamePrefixSegments();
} // INamed