1 /*******************************************************************************
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.graph.db;
14 import org.simantics.db.ReadGraph;
15 import org.simantics.db.Resource;
16 import org.simantics.db.WriteOnlyGraph;
17 import org.simantics.db.exception.DatabaseException;
18 import org.simantics.graph.representation.Root;
20 public class ImportAdvisor extends AbstractImportAdvisor2 {
23 public Resource getTarget() {
28 public Resource analyzeRoot(ReadGraph graph, Root root) throws DatabaseException {
33 public Resource createRoot(WriteOnlyGraph graph, Root root) throws DatabaseException {
34 return createRoot(graph, root, null);
38 public Resource createRoot(WriteOnlyGraph graph, Root root, Resource resource) throws DatabaseException {
39 if(resource == null) resource = graph.newResource();
40 addRootInfo(root, root.name, resource);
45 public void beforeWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException {
49 public void afterWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException {
53 public boolean allowImmutableModifications() {
58 public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent,
59 String name) throws DatabaseException {
60 return process.createChild(graph, parent, null, name);
64 public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent,
65 Resource child, String name) throws DatabaseException {
66 return process.createChild(graph, parent, child, name);