package org.simantics.graph.compiler.internal.templates; import java.util.Collection; import org.simantics.graph.compiler.ExternalFileLoader; import org.simantics.graph.compiler.internal.ltk.Problem; import org.simantics.graph.query.IGraph; import org.simantics.graph.store.GraphStore; public interface ITemplate { void apply(IGraph graph, GraphStore store, int[] parameters, ExternalFileLoader fileLoader, Collection problems); }