X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.db.impl%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fimpl%2Fquery%2FTripleIntProcedure.java;h=7fbbdf76c9e1ec42f12f883897b92ee2696e112d;hp=50f3d445595bdfe50bea6828724d7f3ed85b337f;hb=9f0fd59be54719b1fe9322d8fd37e4950857308c;hpb=969bd23cab98a79ca9101af33334000879fb60c5 diff --git a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/TripleIntProcedure.java b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/TripleIntProcedure.java index 50f3d4455..7fbbdf76c 100644 --- a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/TripleIntProcedure.java +++ b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/TripleIntProcedure.java @@ -1,23 +1,24 @@ -/******************************************************************************* - * 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.db.impl.query; - -import org.simantics.db.impl.graph.ReadGraphImpl; - - -public interface TripleIntProcedure { - - void execute(ReadGraphImpl graph, int s, int p, int o); - void finished(ReadGraphImpl graph); - void exception(ReadGraphImpl graph, Throwable throwable); - -} +/******************************************************************************* + * Copyright (c) 2007, 2018 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.db.impl.query; + +import org.simantics.db.exception.DatabaseException; +import org.simantics.db.impl.graph.ReadGraphImpl; + + +public interface TripleIntProcedure { + + void execute(ReadGraphImpl graph, int s, int p, int o) throws DatabaseException ; + void finished(ReadGraphImpl graph) throws DatabaseException ; + void exception(ReadGraphImpl graph, Throwable throwable) throws DatabaseException; + +}