X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.db.impl%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fimpl%2Fquery%2FQuery.java;h=3c22da5c92818e22a1a2383d69d8e05e759e7d98;hb=ded784594eb0e1fb318fbb931135288152691cf2;hp=29ba90e11cd250fc0aa2b02376faa804e208669a;hpb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/Query.java b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/Query.java index 29ba90e11..3c22da5c9 100644 --- a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/Query.java +++ b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/Query.java @@ -11,19 +11,17 @@ *******************************************************************************/ package org.simantics.db.impl.query; +import org.simantics.db.exception.DatabaseException; import org.simantics.db.impl.graph.ReadGraphImpl; - - /* * The following methods need to be properly implemented * - equals() * - hashCode() */ public interface Query { - - void recompute(ReadGraphImpl graph, Object provider, CacheEntry entry); + void recompute(ReadGraphImpl graph) throws DatabaseException; void removeEntry(QueryProcessor processor); int type();