]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.graph.compiler/src/org/simantics/graph/compiler/internal/store/IPreValue.java
Removed org.simantics.ltk[.antlr] bundles, exact import for antlr
[simantics/platform.git] / bundles / org.simantics.graph.compiler / src / org / simantics / graph / compiler / 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 }