X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.graph.db%2Fsrc%2Forg%2Fsimantics%2Fgraph%2Fdb%2FImportAdvisor.java;h=8769b7597706372e3e0857db6f1c9e7e4e6bc82d;hp=c8b8379af133dca1786d3483ea0f09a5662b38ec;hb=refs%2Fchanges%2F38%2F238%2F2;hpb=24e2b34260f219f0d1644ca7a138894980e25b14 diff --git a/bundles/org.simantics.graph.db/src/org/simantics/graph/db/ImportAdvisor.java b/bundles/org.simantics.graph.db/src/org/simantics/graph/db/ImportAdvisor.java index c8b8379af..8769b7597 100644 --- a/bundles/org.simantics.graph.db/src/org/simantics/graph/db/ImportAdvisor.java +++ b/bundles/org.simantics.graph.db/src/org/simantics/graph/db/ImportAdvisor.java @@ -1,69 +1,69 @@ -/******************************************************************************* - * Copyright (c) 2007, 2010 Association for Decentralized Information Management - * in Industry THTH ry. - * 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: - * VTT Technical Research Centre of Finland - initial API and implementation - *******************************************************************************/ -package org.simantics.graph.db; - -import org.simantics.db.ReadGraph; -import org.simantics.db.Resource; -import org.simantics.db.WriteOnlyGraph; -import org.simantics.db.exception.DatabaseException; -import org.simantics.graph.representation.Root; - -public class ImportAdvisor extends AbstractImportAdvisor2 { - - @Override - public Resource getTarget() { - return null; - } - - @Override - public Resource analyzeRoot(ReadGraph graph, Root root) throws DatabaseException { - return null; - } - - @Override - public Resource createRoot(WriteOnlyGraph graph, Root root) throws DatabaseException { - return createRoot(graph, root, null); - } - - @Override - public Resource createRoot(WriteOnlyGraph graph, Root root, Resource resource) throws DatabaseException { - if(resource == null) resource = graph.newResource(); - addRootInfo(root, root.name, resource); - return resource; - } - - @Override - public void beforeWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException { - } - - @Override - public void afterWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException { - } - - @Override - public boolean allowImmutableModifications() { - return false; - } - - @Override - public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent, - String name) throws DatabaseException { - return process.createChild(graph, parent, null, name); - } - - @Override - public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent, - Resource child, String name) throws DatabaseException { - return process.createChild(graph, parent, child, name); - } - -} +/******************************************************************************* + * Copyright (c) 2007, 2010 Association for Decentralized Information Management + * in Industry THTH ry. + * 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: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.graph.db; + +import org.simantics.db.ReadGraph; +import org.simantics.db.Resource; +import org.simantics.db.WriteOnlyGraph; +import org.simantics.db.exception.DatabaseException; +import org.simantics.graph.representation.Root; + +public class ImportAdvisor extends AbstractImportAdvisor2 { + + @Override + public Resource getTarget() { + return null; + } + + @Override + public Resource analyzeRoot(ReadGraph graph, Root root) throws DatabaseException { + return null; + } + + @Override + public Resource createRoot(WriteOnlyGraph graph, Root root) throws DatabaseException { + return createRoot(graph, root, null); + } + + @Override + public Resource createRoot(WriteOnlyGraph graph, Root root, Resource resource) throws DatabaseException { + if(resource == null) resource = graph.newResource(); + addRootInfo(root, root.name, resource); + return resource; + } + + @Override + public void beforeWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException { + } + + @Override + public void afterWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException { + } + + @Override + public boolean allowImmutableModifications() { + return false; + } + + @Override + public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent, + String name) throws DatabaseException { + return process.createChild(graph, parent, null, name); + } + + @Override + public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent, + Resource child, String name) throws DatabaseException { + return process.createChild(graph, parent, child, name); + } + +}