blob: 7a578dd1bfed7e37a2b324da389639fee2710ea7 [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 java.util.Map;
import org.eclipse.emf.common.util.DiagnosticChain;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Mode Label</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.ModeLabel#getMode <em>Mode</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.ModeLabel#getInitialValue <em>Initial Value</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getModeLabel()
* @model
* @generated
*/
public interface ModeLabel extends AbstractMemoryElement, IDisplayName {
/**
* Returns the value of the '<em><b>Mode</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Mode</em>' reference.
* @see #setMode(Mode)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getModeLabel_Mode()
* @model required="true"
* @generated
*/
Mode getMode();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ModeLabel#getMode <em>Mode</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Mode</em>' reference.
* @see #getMode()
* @generated
*/
void setMode(Mode value);
/**
* Returns the value of the '<em><b>Initial Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Initial Value</em>' attribute.
* @see #setInitialValue(String)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getModeLabel_InitialValue()
* @model unique="false"
* @generated
*/
String getInitialValue();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ModeLabel#getInitialValue <em>Initial Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Initial Value</em>' attribute.
* @see #getInitialValue()
* @generated
*/
void setInitialValue(String value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model unique="false" diagnosticsUnique="false" contextUnique="false"
* @generated
*/
boolean validateInvariants(DiagnosticChain diagnostics, Map<Object, Object> context);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" unique="false"
* @generated
*/
boolean isEnum();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" unique="false"
* @generated
*/
boolean isNumeric();
} // ModeLabel