blob: 6df7cee3686ca1a4cdb4e8941d3540094ba04833 [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.emf.documentstructure;
import org.eclipse.papyrus.model2doc.core.builtintypes.TextCell;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Extended Text Cell</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* We extends the TextCell provided by the BuiltInTypes metamodel, in order to be able to associate them a DataSource if required.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.model2doc.emf.documentstructure.ExtendedTextCell#getDataSource <em>Data Source</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.model2doc.emf.documentstructure.DocumentStructurePackage#getExtendedTextCell()
* @model
* @generated
*/
public interface ExtendedTextCell extends TextCell {
/**
* Returns the value of the '<em><b>Data Source</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Data Source</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Data Source</em>' containment reference.
* @see #setDataSource(DataSource)
* @see org.eclipse.papyrus.model2doc.emf.documentstructure.DocumentStructurePackage#getExtendedTextCell_DataSource()
* @model containment="true" ordered="false"
* @generated
*/
DataSource getDataSource();
/**
* Sets the value of the '{@link org.eclipse.papyrus.model2doc.emf.documentstructure.ExtendedTextCell#getDataSource <em>Data Source</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Data Source</em>' containment reference.
* @see #getDataSource()
* @generated
*/
void setDataSource(DataSource value);
} // ExtendedTextCell