X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.layer0.utils%2Fsrc%2Forg%2Fsimantics%2Flayer0%2Futils%2Fwriter%2FGraphWriter.java;h=e3b71ca9416ef285b0f63583c93d8b84b740cf50;hb=ffc32a9e2dda6170269dd1149db275f8039981ff;hp=c8a46f6ab3db1a69dbc2ca3345dbe1731c961d7e;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.layer0.utils/src/org/simantics/layer0/utils/writer/GraphWriter.java b/bundles/org.simantics.layer0.utils/src/org/simantics/layer0/utils/writer/GraphWriter.java index c8a46f6ab..e3b71ca94 100644 --- a/bundles/org.simantics.layer0.utils/src/org/simantics/layer0/utils/writer/GraphWriter.java +++ b/bundles/org.simantics.layer0.utils/src/org/simantics/layer0/utils/writer/GraphWriter.java @@ -1,46 +1,46 @@ -/******************************************************************************* - * 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.layer0.utils.writer; - -import org.simantics.db.Resource; -import org.simantics.db.ReadGraph; -import org.simantics.db.exception.DatabaseException; - -public interface GraphWriter { - - ReadGraph getGraph(); // Returns read-only graph - - GraphWriter flush() throws DatabaseException; - - // Begin - GraphWriter create() throws DatabaseException; - GraphWriter create(Resource type) throws DatabaseException; - GraphWriter create(int clusterHint) throws DatabaseException; - GraphWriter create(int clusterHint, Resource type) throws DatabaseException; - GraphWriter create(String name, Resource type) throws DatabaseException; - GraphWriter create(int clusterHint, String name, Resource type) throws DatabaseException; - GraphWriter createLiteral(Object value, Resource dataType) throws DatabaseException; - GraphWriter createLiteral(int clusterHint, Object value, Resource dataType) throws DatabaseException; - GraphWriter createInverse(Resource r) throws DatabaseException; - GraphWriter createInverse(int clusterHint, Resource r) throws DatabaseException; - GraphWriter handle(Resource s); - - // Edit - GraphWriter let(Resource p, Resource o) throws DatabaseException; - //GraphWriter letWithoutInverse(Resource p, Resource o); - GraphWriter let(int clusterHint, Resource p, Object value, Resource dataType) throws DatabaseException; - GraphWriter let(Resource p, Object value, Resource dataType) throws DatabaseException; - //GraphWriter letWithoutInverse(Resource p, Object value, Resource dataType); - GraphWriter stat(Resource s, Resource p, Resource o) throws DatabaseException; - Resource get(); - -} +/******************************************************************************* + * 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.layer0.utils.writer; + +import org.simantics.db.Resource; +import org.simantics.db.ReadGraph; +import org.simantics.db.exception.DatabaseException; + +public interface GraphWriter { + + ReadGraph getGraph(); // Returns read-only graph + + GraphWriter flush() throws DatabaseException; + + // Begin + GraphWriter create() throws DatabaseException; + GraphWriter create(Resource type) throws DatabaseException; + GraphWriter create(int clusterHint) throws DatabaseException; + GraphWriter create(int clusterHint, Resource type) throws DatabaseException; + GraphWriter create(String name, Resource type) throws DatabaseException; + GraphWriter create(int clusterHint, String name, Resource type) throws DatabaseException; + GraphWriter createLiteral(Object value, Resource dataType) throws DatabaseException; + GraphWriter createLiteral(int clusterHint, Object value, Resource dataType) throws DatabaseException; + GraphWriter createInverse(Resource r) throws DatabaseException; + GraphWriter createInverse(int clusterHint, Resource r) throws DatabaseException; + GraphWriter handle(Resource s); + + // Edit + GraphWriter let(Resource p, Resource o) throws DatabaseException; + //GraphWriter letWithoutInverse(Resource p, Resource o); + GraphWriter let(int clusterHint, Resource p, Object value, Resource dataType) throws DatabaseException; + GraphWriter let(Resource p, Object value, Resource dataType) throws DatabaseException; + //GraphWriter letWithoutInverse(Resource p, Object value, Resource dataType); + GraphWriter stat(Resource s, Resource p, Resource o) throws DatabaseException; + Resource get(); + +}