blob: 49da009dd23dd8132e3679e6a3f78dfe53b73520 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Scheduling Parameter Definition</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.SchedulingParameterDefinition#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.SchedulingParameterDefinition#isMany <em>Many</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.SchedulingParameterDefinition#isMandatory <em>Mandatory</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.SchedulingParameterDefinition#getDefaultValue <em>Default Value</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.SchedulingParameterDefinition#getSchedulerDefinitions <em>Scheduler Definitions</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getSchedulingParameterDefinition()
* @model
* @generated
*/
public interface SchedulingParameterDefinition extends OsDefinition {
/**
* Returns the value of the '<em><b>Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.app4mc.amalthea.model.ParameterType}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.ParameterType
* @see #setType(ParameterType)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getSchedulingParameterDefinition_Type()
* @model unique="false"
* @generated
*/
ParameterType getType();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.SchedulingParameterDefinition#getType <em>Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.ParameterType
* @see #getType()
* @generated
*/
void setType(ParameterType value);
/**
* Returns the value of the '<em><b>Many</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Many</em>' attribute.
* @see #setMany(boolean)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getSchedulingParameterDefinition_Many()
* @model default="false" unique="false"
* @generated
*/
boolean isMany();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.SchedulingParameterDefinition#isMany <em>Many</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Many</em>' attribute.
* @see #isMany()
* @generated
*/
void setMany(boolean value);
/**
* Returns the value of the '<em><b>Mandatory</b></em>' attribute.
* The default value is <code>"true"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Mandatory</em>' attribute.
* @see #setMandatory(boolean)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getSchedulingParameterDefinition_Mandatory()
* @model default="true" unique="false"
* @generated
*/
boolean isMandatory();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.SchedulingParameterDefinition#isMandatory <em>Mandatory</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Mandatory</em>' attribute.
* @see #isMandatory()
* @generated
*/
void setMandatory(boolean value);
/**
* Returns the value of the '<em><b>Default Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Default Value</em>' containment reference.
* @see #setDefaultValue(Value)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getSchedulingParameterDefinition_DefaultValue()
* @model containment="true"
* @generated
*/
Value getDefaultValue();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.SchedulingParameterDefinition#getDefaultValue <em>Default Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Default Value</em>' containment reference.
* @see #getDefaultValue()
* @generated
*/
void setDefaultValue(Value value);
/**
* Returns the value of the '<em><b>Scheduler Definitions</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.SchedulerDefinition}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p><b>Returns an <em>immutable</em> list of scheduler definitions from which this parameter definition is used.</b></p>
* <!-- end-model-doc -->
* @return the value of the '<em>Scheduler Definitions</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getSchedulingParameterDefinition_SchedulerDefinitions()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<SchedulerDefinition> getSchedulerDefinitions();
} // SchedulingParameterDefinition