Skip to content
Snippets Groups Projects
Commit c149372d authored by Simon Barner's avatar Simon Barner
Browse files

KernelModelElementUtils

 - Rename computeFullyName() -> computeFullyQualifiedName()
parent d7783cf4
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ $Id$ ...@@ -18,7 +18,7 @@ $Id$
package org.fortiss.tooling.base.ui.annotation.editingsupport; package org.fortiss.tooling.base.ui.annotation.editingsupport;
import static org.fortiss.tooling.kernel.utils.EcoreUtils.getChildrenWithType; import static org.fortiss.tooling.kernel.utils.EcoreUtils.getChildrenWithType;
import static org.fortiss.tooling.kernel.utils.KernelModelElementUtils.computeFullyName; import static org.fortiss.tooling.kernel.utils.KernelModelElementUtils.computeFullyQualifiedName;
import static org.fortiss.tooling.kernel.utils.KernelModelElementUtils.computeRelativeName; import static org.fortiss.tooling.kernel.utils.KernelModelElementUtils.computeRelativeName;
import static org.fortiss.tooling.kernel.utils.KernelModelElementUtils.getParentElement; import static org.fortiss.tooling.kernel.utils.KernelModelElementUtils.getParentElement;
...@@ -116,7 +116,7 @@ public class ComboBoxLabelValueMapping { ...@@ -116,7 +116,7 @@ public class ComboBoxLabelValueMapping {
} }
labelToValueMap.put(label, v); labelToValueMap.put(label, v);
} else { } else {
labelToValueMap.put(computeFullyName((INamedElement)v), v); labelToValueMap.put(computeFullyQualifiedName((INamedElement)v), v);
} }
} else { } else {
labelToValueMap.put(v.toString(), v); labelToValueMap.put(v.toString(), v);
......
...@@ -262,7 +262,7 @@ public final class KernelModelElementUtils { ...@@ -262,7 +262,7 @@ public final class KernelModelElementUtils {
* *
* @return the fully qualified name * @return the fully qualified name
*/ */
public static String computeFullyName(INamedElement element) { public static String computeFullyQualifiedName(INamedElement element) {
String qualifiedName = element.getName(); String qualifiedName = element.getName();
EObject current = element; EObject current = element;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment