blob: 69263f6def42248ccfddcb5e7e688af117cac4f4 [file] [log] [blame]
/*
* Copyright (c) 2005, 2006 IBM Corporation 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:
* IBM - initial API and implementation
*
* $Id: MessageEnd.java,v 1.2 2006/05/12 20:38:04 khussey Exp $
*/
package org.eclipse.uml2.uml;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Message End</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* MessageEnd is an abstract specialization of NamedElement that represents what can occur at the end of a message.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.uml.MessageEnd#getMessage <em>Message</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.uml.UMLPackage#getMessageEnd()
* @model abstract="true"
* @generated
*/
public interface MessageEnd
extends NamedElement {
/**
* Returns the value of the '<em><b>Message</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* References a Message.
* <!-- end-model-doc -->
* @return the value of the '<em>Message</em>' reference.
* @see #setMessage(Message)
* @see org.eclipse.uml2.uml.UMLPackage#getMessageEnd_Message()
* @model ordered="false"
* @generated
*/
Message getMessage();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.MessageEnd#getMessage <em>Message</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Message</em>' reference.
* @see #getMessage()
* @generated
*/
void setMessage(Message value);
} // MessageEnd