package org.simantics.graph.compiler.internal.store; import java.util.Collection; import org.simantics.databoard.binding.Binding; import org.simantics.graph.compiler.internal.ltk.Location; import org.simantics.graph.compiler.internal.ltk.Problem; import org.simantics.graph.query.Path; import org.simantics.graph.query.Paths; public interface IPreValue { Object toValue(Binding binding, Collection problems); Path getDefaultType(Paths paths); Location getLocation(); }