blob: a1ee648894933acc8bff71218984247087a96fc3 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2018-2020 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 app4mc.example.transform.samplemodel;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Scheduler</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link app4mc.example.transform.samplemodel.Scheduler#getName <em>Name</em>}</li>
* </ul>
*
* @see app4mc.example.transform.samplemodel.SampleModelPackage#getScheduler()
* @model
* @generated
*/
public interface Scheduler extends EObject {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see app4mc.example.transform.samplemodel.SampleModelPackage#getScheduler_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link app4mc.example.transform.samplemodel.Scheduler#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);
} // Scheduler