/** * <copyright> * </copyright> * */ package org.eclipse.etrice.core.room; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Structure Class</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.etrice.core.room.StructureClass#getBindings <em>Bindings</em>}</li> * <li>{@link org.eclipse.etrice.core.room.StructureClass#getConnections <em>Connections</em>}</li> * </ul> * </p> * * @see org.eclipse.etrice.core.room.RoomPackage#getStructureClass() * @model * @generated */ public interface StructureClass extends RoomClass { /** * Returns the value of the '<em><b>Bindings</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.etrice.core.room.Binding}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Bindings</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Bindings</em>' containment reference list. * @see org.eclipse.etrice.core.room.RoomPackage#getStructureClass_Bindings() * @model containment="true" * @generated */ EList<Binding> getBindings(); /** * Returns the value of the '<em><b>Connections</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.etrice.core.room.LayerConnection}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Connections</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Connections</em>' containment reference list. * @see org.eclipse.etrice.core.room.RoomPackage#getStructureClass_Connections() * @model containment="true" * @generated */ EList<LayerConnection> getConnections(); } // StructureClass