blob: f7740d36a92f7b19792f9b186b7c7da099e19b7d [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>Channel Fill Condition</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.ChannelFillCondition#getChannel <em>Channel</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.ChannelFillCondition#getRelation <em>Relation</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.ChannelFillCondition#getFillLevel <em>Fill Level</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getChannelFillCondition()
* @model
* @generated
*/
public interface ChannelFillCondition extends BaseObject, Condition {
/**
* Returns the value of the '<em><b>Channel</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Channel</em>' reference.
* @see #setChannel(Channel)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getChannelFillCondition_Channel()
* @model required="true"
* @generated
*/
Channel getChannel();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ChannelFillCondition#getChannel <em>Channel</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Channel</em>' reference.
* @see #getChannel()
* @generated
*/
void setChannel(Channel value);
/**
* Returns the value of the '<em><b>Relation</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.app4mc.amalthea.model.RelationalOperator}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Relation</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.RelationalOperator
* @see #setRelation(RelationalOperator)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getChannelFillCondition_Relation()
* @model unique="false"
* @generated
*/
RelationalOperator getRelation();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ChannelFillCondition#getRelation <em>Relation</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Relation</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.RelationalOperator
* @see #getRelation()
* @generated
*/
void setRelation(RelationalOperator value);
/**
* Returns the value of the '<em><b>Fill Level</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Fill Level</em>' attribute.
* @see #setFillLevel(int)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getChannelFillCondition_FillLevel()
* @model unique="false" dataType="org.eclipse.app4mc.amalthea.model.NonNegativeInt"
* @generated
*/
int getFillLevel();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ChannelFillCondition#getFillLevel <em>Fill Level</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Fill Level</em>' attribute.
* @see #getFillLevel()
* @generated
*/
void setFillLevel(int value);
} // ChannelFillCondition