]> gerrit.simantics Code Review - simantics/platform.git/blob - internal/store/IPreValue.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / internal / store / IPreValue.java
1 package org.simantics.graph.compiler.internal.store;
2
3 import java.util.Collection;
4
5 import org.simantics.databoard.binding.Binding;
6 import org.simantics.graph.compiler.internal.ltk.Location;
7 import org.simantics.graph.compiler.internal.ltk.Problem;
8 import org.simantics.graph.query.Path;
9 import org.simantics.graph.query.Paths;
10
11
12
13 public interface IPreValue {
14         Object toValue(Binding binding, Collection<Problem> problems);
15         Path getDefaultType(Paths paths);
16         Location getLocation();
17 }