package org.simantics.scl.commands.internal.checker; import java.util.List; import org.simantics.scl.compiler.types.Type; /** * Internal object used in the implementation of Checker for * doing one checking step. * * @author Hannu Niemistö */ public interface CheckItem { boolean check(Object check, Object[] parameters, int pos); void collectParameterTypes(List types); }