]> gerrit.simantics Code Review - simantics/platform.git/blob - reflection/TypeBindingScheme.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / 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 }