]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/TypeBindingScheme.java
Revert "Prime SCL BindingRegistry to shave ~0.5s from startup"
[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 }