blob: 820459cc986eca7fe96dd2db62e0baa9e7d47556 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Alias</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.Alias#getTarget <em>Target</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Alias#getAlias <em>Alias</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getAlias()
* @model
* @generated
*/
public interface Alias extends BaseObject {
/**
* Returns the value of the '<em><b>Target</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Name of the target environment
* <!-- end-model-doc -->
* @return the value of the '<em>Target</em>' attribute.
* @see #setTarget(String)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getAlias_Target()
* @model unique="false"
* @generated
*/
String getTarget();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Alias#getTarget <em>Target</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target</em>' attribute.
* @see #getTarget()
* @generated
*/
void setTarget(String value);
/**
* Returns the value of the '<em><b>Alias</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Corresponding name in the target environment
* <!-- end-model-doc -->
* @return the value of the '<em>Alias</em>' attribute.
* @see #setAlias(String)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getAlias_Alias()
* @model unique="false"
* @generated
*/
String getAlias();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Alias#getAlias <em>Alias</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Alias</em>' attribute.
* @see #getAlias()
* @generated
*/
void setAlias(String value);
} // Alias