blob: 89e010ca053ef8ddf154d35ac8aa489735123c21 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2011 E.D.Willink and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*
* </copyright>
*
* $Id$
*/
package org.eclipse.ocl.examples.xtext.markup;
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:
* <ul>
* <li>{@link org.eclipse.ocl.examples.xtext.markup.TextElement#getText <em>Text</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ocl.examples.xtext.markup.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.examples.xtext.markup.MarkupPackage#getTextElement_Text()
* @model unique="false"
* @generated
*/
EList<String> getText();
} // TextElement