Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/MessageOccurrenceSpecification.java')
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/MessageOccurrenceSpecification.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/MessageOccurrenceSpecification.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/MessageOccurrenceSpecification.java
new file mode 100644
index 00000000..1d8fef5d
--- /dev/null
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/MessageOccurrenceSpecification.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright (c) 2005 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: MessageOccurrenceSpecification.java,v 1.1 2005/11/14 22:26:00 khussey Exp $
+ */
+package org.eclipse.uml2.uml;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Message Occurrence Specification</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ * Specifies the occurrence of message events, such as sending and receiving of signals or invoking or receiving of operation calls. A message occurrence specification is a kind of message end. Messages are generated either by synchronous operation calls or asynchronous signal sends. They are received by the execution of corresponding accept event actions.
+ * <!-- end-model-doc -->
+ *
+ *
+ * @see org.eclipse.uml2.uml.UMLPackage#getMessageOccurrenceSpecification()
+ * @model
+ * @generated
+ */
+public interface MessageOccurrenceSpecification
+ extends OccurrenceSpecification, MessageEnd {
+} // MessageOccurrenceSpecification

Back to the top