Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/FlowFinalNode.java')
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/FlowFinalNode.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/FlowFinalNode.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/FlowFinalNode.java
new file mode 100644
index 00000000..d79630af
--- /dev/null
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/FlowFinalNode.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: FlowFinalNode.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>Flow Final Node</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ * A flow final destroys all tokens that arrive at it. It has no effect on other flows in the activity.
+ * <!-- end-model-doc -->
+ *
+ *
+ * @see org.eclipse.uml2.uml.UMLPackage#getFlowFinalNode()
+ * @model
+ * @generated
+ */
+public interface FlowFinalNode
+ extends FinalNode {
+} // FlowFinalNode

Back to the top