blob: 4418101f758d56043543a1520b9db8137ff4c545 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.xtext.markupcs;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Text Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.xtext.markupcs.TextElement#getText <em>Text</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.xtext.markupcs.MarkupPackage#getTextElement()
* @model
* @generated
*/
public interface TextElement extends MarkupElement {
/**
* Returns the value of the '<em><b>Text</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Text</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Text</em>' attribute list.
* @see org.eclipse.ocl.xtext.markupcs.MarkupPackage#getTextElement_Text()
* @model unique="false"
* @generated
*/
EList<String> getText();
} // TextElement