/** */ package org.eclipse.etrice.core.room; /** * * A representation of the model object 'Logical Thread'. * * * *
A logical thread is addressed by the {@link ActorInstanceMapping}s of a {@link SubSystemClass}. * * * *

* The following features are supported: *

* * * @see org.eclipse.etrice.core.room.RoomPackage#getLogicalThread() * @model * @generated */ public interface LogicalThread extends RoomElement { /** * Returns the value of the 'Name' attribute. * * * *
By this name the thread is referred to in the model. * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.etrice.core.room.RoomPackage#getLogicalThread_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.etrice.core.room.LogicalThread#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // LogicalThread