]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/TypeBindingScheme.java
f2714bf3570567c295ef449255b3314171988a3a
[simantics/platform.git] / bundles / org.simantics.scl.reflection / src / org / simantics / scl / reflection / TypeBindingScheme.java
1 package org.simantics.scl.reflection;
2
3 import org.simantics.scl.compiler.types.TCon;
4
5 /**
6  * Binds SCL type constructors to Java classes.
7  * @author Hannu Niemistö
8  */
9 public interface TypeBindingScheme {
10     Class<?> getClass(TCon con) throws TypeNotFoundException;
11 }