blob: adec696cc413bfd1e037359457d42bed86d31232 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2007, 2008 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: Comment.java,v 1.1 2008/07/23 09:55:18 qglineur Exp $
*/
package org.eclipse.qvt.declarative.emof.EMOF;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Comment</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.qvt.declarative.emof.EMOF.Comment#getAnnotatedElement <em>Annotated Element</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.emof.EMOF.Comment#getBody <em>Body</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.qvt.declarative.emof.EMOF.EMOFPackage#getComment()
* @model
* @generated
*/
public interface Comment extends Element {
/**
* Returns the value of the '<em><b>Annotated Element</b></em>' reference list.
* The list contents are of type {@link org.eclipse.qvt.declarative.emof.EMOF.NamedElement}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Annotated Element</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Annotated Element</em>' reference list.
* @see org.eclipse.qvt.declarative.emof.EMOF.EMOFPackage#getComment_AnnotatedElement()
* @model ordered="false"
* @generated
*/
EList<NamedElement> getAnnotatedElement();
/**
* Returns the value of the '<em><b>Body</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Body</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Body</em>' attribute.
* @see #setBody(String)
* @see org.eclipse.qvt.declarative.emof.EMOF.EMOFPackage#getComment_Body()
* @model dataType="org.eclipse.qvt.declarative.emof.EMOF.String"
* @generated
*/
String getBody();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.EMOF.Comment#getBody <em>Body</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Body</em>' attribute.
* @see #getBody()
* @generated
*/
void setBody(String value);
} // Comment