blob: 7e4c228f6b1ea3e52cc1d23aa12888b23752ded6 [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>Channel</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.Channel#getElementType <em>Element Type</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Channel#getDefaultElements <em>Default Elements</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Channel#getMaxElements <em>Max Elements</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Channel#getChannelAccesses <em>Channel Accesses</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getChannel()
* @model
* @generated
*/
public interface Channel extends AbstractMemoryElement, IDisplayName, INamespaceMember {
/**
* Returns the value of the '<em><b>Element Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Element Type</em>' containment reference.
* @see #setElementType(DataType)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getChannel_ElementType()
* @model containment="true"
* @generated
*/
DataType getElementType();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Channel#getElementType <em>Element Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Element Type</em>' containment reference.
* @see #getElementType()
* @generated
*/
void setElementType(DataType value);
/**
* Returns the value of the '<em><b>Default Elements</b></em>' attribute.
* The default value is <code>"0"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Default Elements</em>' attribute.
* @see #setDefaultElements(int)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getChannel_DefaultElements()
* @model default="0" unique="false"
* @generated
*/
int getDefaultElements();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Channel#getDefaultElements <em>Default Elements</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Default Elements</em>' attribute.
* @see #getDefaultElements()
* @generated
*/
void setDefaultElements(int value);
/**
* Returns the value of the '<em><b>Max Elements</b></em>' attribute.
* The default value is <code>"0"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Max Elements</em>' attribute.
* @see #setMaxElements(int)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getChannel_MaxElements()
* @model default="0" unique="false"
* @generated
*/
int getMaxElements();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Channel#getMaxElements <em>Max Elements</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Max Elements</em>' attribute.
* @see #getMaxElements()
* @generated
*/
void setMaxElements(int value);
/**
* Returns the value of the '<em><b>Channel Accesses</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.ChannelAccess}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p><b>Returns an <em>immutable</em> list of accesses (ChannelAccess).</b></p>
* <!-- end-model-doc -->
* @return the value of the '<em>Channel Accesses</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getChannel_ChannelAccesses()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<ChannelAccess> getChannelAccesses();
} // Channel