blob: 7060afdee4ced4dc2b5a7b71e61b618a94d25ef4 [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.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Non Atomic Data Coherency</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.NonAtomicDataCoherency#isEnabled <em>Enabled</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.NonAtomicDataCoherency#getAlgorithm <em>Algorithm</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.NonAtomicDataCoherency#getAccessMultiplicity <em>Access Multiplicity</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getNonAtomicDataCoherency()
* @model
* @generated
*/
public interface NonAtomicDataCoherency extends EObject {
/**
* Returns the value of the '<em><b>Enabled</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Enabled</em>' attribute.
* @see #setEnabled(boolean)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getNonAtomicDataCoherency_Enabled()
* @model default="false" unique="false"
* @generated
*/
boolean isEnabled();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.NonAtomicDataCoherency#isEnabled <em>Enabled</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Enabled</em>' attribute.
* @see #isEnabled()
* @generated
*/
void setEnabled(boolean value);
/**
* Returns the value of the '<em><b>Algorithm</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Algorithm</em>' attribute.
* @see #setAlgorithm(String)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getNonAtomicDataCoherency_Algorithm()
* @model unique="false"
* @generated
*/
String getAlgorithm();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.NonAtomicDataCoherency#getAlgorithm <em>Algorithm</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Algorithm</em>' attribute.
* @see #getAlgorithm()
* @generated
*/
void setAlgorithm(String value);
/**
* Returns the value of the '<em><b>Access Multiplicity</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.app4mc.amalthea.model.AccessMultiplicity}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Access Multiplicity</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.AccessMultiplicity
* @see #setAccessMultiplicity(AccessMultiplicity)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getNonAtomicDataCoherency_AccessMultiplicity()
* @model unique="false"
* @generated
*/
AccessMultiplicity getAccessMultiplicity();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.NonAtomicDataCoherency#getAccessMultiplicity <em>Access Multiplicity</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Access Multiplicity</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.AccessMultiplicity
* @see #getAccessMultiplicity()
* @generated
*/
void setAccessMultiplicity(AccessMultiplicity value);
} // NonAtomicDataCoherency