Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/umlrt/org.eclipse.papyrus.umlrt/src/org/eclipse/papyrus/umlrt/internal/sync/statemachine/StateMachineSyncRegistry.java')
-rw-r--r--extraplugins/umlrt/org.eclipse.papyrus.umlrt/src/org/eclipse/papyrus/umlrt/internal/sync/statemachine/StateMachineSyncRegistry.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/extraplugins/umlrt/org.eclipse.papyrus.umlrt/src/org/eclipse/papyrus/umlrt/internal/sync/statemachine/StateMachineSyncRegistry.java b/extraplugins/umlrt/org.eclipse.papyrus.umlrt/src/org/eclipse/papyrus/umlrt/internal/sync/statemachine/StateMachineSyncRegistry.java
deleted file mode 100644
index 74d398a1f02..00000000000
--- a/extraplugins/umlrt/org.eclipse.papyrus.umlrt/src/org/eclipse/papyrus/umlrt/internal/sync/statemachine/StateMachineSyncRegistry.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2015 Christian W. Damus 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:
- * Christian W. Damus - Initial API and implementation
- *
- *****************************************************************************/
-
-package org.eclipse.papyrus.umlrt.internal.sync.statemachine;
-
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.papyrus.umlrt.custom.utils.CapsuleUtils;
-import org.eclipse.papyrus.umlrt.internal.sync.UMLSyncRegistry;
-import org.eclipse.uml2.uml.StateMachine;
-
-/**
- * Capsule statemachine inheritance synchronization registry.
- */
-public class StateMachineSyncRegistry extends UMLSyncRegistry<StateMachine> {
-
- public StateMachineSyncRegistry() {
- super();
- }
-
- @Override
- public StateMachine getModelOf(EObject backend) {
- StateMachine result = null;
-
- if (backend instanceof StateMachine) {
- result = CapsuleUtils.getSuperBehavior((StateMachine) backend);
- }
-
- return result;
- }
-}

Back to the top