blob: 3acd0b9264892a375c04b6ab8194d939a9a1eb4a [file] [log] [blame]
/**
* Copyright (c) 2019 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
*/
package org.eclipse.papyrus.model2doc.core.builtintypes;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Row</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.model2doc.core.builtintypes.Row#getCells <em>Cells</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.model2doc.core.builtintypes.BuiltInTypesPackage#getRow()
* @model interface="true" abstract="true"
* @generated
*/
public interface Row extends EObject {
/**
* Returns the value of the '<em><b>Cells</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.papyrus.model2doc.core.builtintypes.Cell}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The cells owned by the row.
* <!-- end-model-doc -->
*
* @return the value of the '<em>Cells</em>' containment reference list.
* @see org.eclipse.papyrus.model2doc.core.builtintypes.BuiltInTypesPackage#getRow_Cells()
* @model containment="true" ordered="false"
* @generated
*/
EList<Cell> getCells();
} // Row