*******************************************************************************/
package org.simantics.modeling.mapping;
-import gnu.trove.map.hash.THashMap;
-
import java.util.Map;
+import java.util.Set;
import org.simantics.Simantics;
import org.simantics.databoard.Bindings;
import org.simantics.project.IProject;
import org.simantics.structural.stubs.StructuralResource2;
+import gnu.trove.map.hash.THashMap;
+
/**
* @author Tuukka Lehtonen
*/
Resource targetContainer, Map<Object, Object> map) throws DatabaseException {
StructuralResource2 STR = StructuralResource2.getInstance(graph);
Resource copy = null;
- if (graph.isInstanceOf(source, STR.Connection)) {
+ Set<Resource> types = graph.getTypes(source);
+ if (types.contains(STR.Connection)) {
// Configuration connections are not named, can't use TG copy for
// them at the moment.
copy = CopyAdvisorUtil.copy2(graph, source, null, map);
if (graph.hasStatement(sourceContainer, L0.ConsistsOf, source))
graph.claim(targetContainer, L0.ConsistsOf, copy);
- Layer0Utils.claimNewIdentifier(graph, copy, false);
+ if (types.contains(L0.TypeWithIdentifier))
+ Layer0Utils.claimNewIdentifier(graph, copy, false);
if (context.get(SynchronizationHints.NO_RENAME) == null)
renameComponent(context, graph, source, copy, sourceContainer, targetContainer);
return copy;