Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'cdo/bundles/uml/org.eclipse.uml2.uml.cdo/src/org/eclipse/uml2/uml/cdo/internal/impl/FlowFinalNodeImpl.java')
-rw-r--r--cdo/bundles/uml/org.eclipse.uml2.uml.cdo/src/org/eclipse/uml2/uml/cdo/internal/impl/FlowFinalNodeImpl.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/cdo/bundles/uml/org.eclipse.uml2.uml.cdo/src/org/eclipse/uml2/uml/cdo/internal/impl/FlowFinalNodeImpl.java b/cdo/bundles/uml/org.eclipse.uml2.uml.cdo/src/org/eclipse/uml2/uml/cdo/internal/impl/FlowFinalNodeImpl.java
new file mode 100644
index 00000000..56e7f690
--- /dev/null
+++ b/cdo/bundles/uml/org.eclipse.uml2.uml.cdo/src/org/eclipse/uml2/uml/cdo/internal/impl/FlowFinalNodeImpl.java
@@ -0,0 +1,50 @@
+/*
+ * Copyright (c) 2005, 2015 IBM Corporation, CEA, 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
+ * Kenn Hussey (CEA) - 451350
+ *
+ */
+package org.eclipse.uml2.uml.cdo.internal.impl;
+
+import org.eclipse.emf.ecore.EClass;
+
+import org.eclipse.uml2.uml.FlowFinalNode;
+import org.eclipse.uml2.uml.UMLPackage;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>Flow Final Node</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * @generated
+ */
+public class FlowFinalNodeImpl
+ extends FinalNodeImpl
+ implements FlowFinalNode {
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ protected FlowFinalNodeImpl() {
+ super();
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ @Override
+ protected EClass eStaticClass() {
+ return UMLPackage.Literals.FLOW_FINAL_NODE;
+ }
+
+} //FlowFinalNodeImpl

Back to the top