]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/Query.java
Generate parts of db client query code
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / query / Query.java
index 29ba90e11cd250fc0aa2b02376faa804e208669a..3c22da5c92818e22a1a2383d69d8e05e759e7d98 100644 (file)
  *******************************************************************************/
 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();