package org.simantics.scl.reflection; import org.simantics.scl.compiler.types.TCon; /** * Binds SCL type constructors to Java classes. * @author Hannu Niemistö */ public interface TypeBindingScheme { Class getClass(TCon con) throws TypeNotFoundException; }