]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.commands/src/org/simantics/scl/commands/internal/checker/CheckItem.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.commands / src / org / simantics / scl / commands / internal / checker / CheckItem.java
1 package org.simantics.scl.commands.internal.checker;
2
3 import java.util.List;
4
5 import org.simantics.scl.compiler.types.Type;
6
7 /**
8  * Internal object used in the implementation of Checker for
9  * doing one checking step.
10  * 
11  * @author Hannu Niemistö
12  */
13 public interface CheckItem {
14     boolean check(Object check, Object[] parameters, int pos);
15     void collectParameterTypes(List<Type> types);
16 }