package org.simantics.scl.reflection; import org.simantics.scl.compiler.types.TCon; import org.simantics.scl.reflection.internal.typeRegistry.TypeRegistry; public enum MinimalTypeBindingScheme implements TypeBindingScheme { INSTANCE; @Override public Class getClass(TCon type) throws TypeNotFoundException { return TypeRegistry.getClass(type); } }