Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/qompass-designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/util/ConnectorTypeUtil.java')
-rw-r--r--extraplugins/qompass-designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/util/ConnectorTypeUtil.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/extraplugins/qompass-designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/util/ConnectorTypeUtil.java b/extraplugins/qompass-designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/util/ConnectorTypeUtil.java
index eea354d76bf..919a7fcbff1 100644
--- a/extraplugins/qompass-designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/util/ConnectorTypeUtil.java
+++ b/extraplugins/qompass-designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/util/ConnectorTypeUtil.java
@@ -1,14 +1,14 @@
/**
* Copyright (c) 2013 CEA LIST
- *
+ *
* 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:
* Ansgar Radermacher - Initial API and implementation
- *
+ *
*/
package org.eclipse.papyrus.FCM.util;
@@ -27,11 +27,11 @@ public class ConnectorTypeUtil {
protected FCMUtil.RoleBindingTable bindingTable = null;
public FCMUtil.RoleBindingTable getRoleBindings(org.eclipse.papyrus.FCM.Connector connector) {
- if(connector.getIc() instanceof InteractionComponent) {
- connectorComp = (InteractionComponent)connector.getIc();
+ if (connector.getIc() instanceof InteractionComponent) {
+ connectorComp = connector.getIc();
connectionPattern = connectorComp.getConnectionPattern();
bindingTable = new FCMUtil.RoleBindingTable();
- for(org.eclipse.uml2.uml.ConnectableElement role : connectionPattern.getRoles()) {
+ for (org.eclipse.uml2.uml.ConnectableElement role : connectionPattern.getRoles()) {
bindingTable.addEntry(role, new ArrayList<org.eclipse.uml2.uml.NamedElement>());
}
return bindingTable;

Back to the top