1 package spoon.support.template; 2 3 import spoon.reflect.declaration.CtElement; 4 import spoon.reflect.reference.CtReference; 5 import spoon.template.TemplateMatcher; 6 7 17 public interface ParameterMatcher { 18 19 28 boolean match(TemplateMatcher templateMatcher, CtElement template, 29 CtElement toMatch); 30 31 40 boolean match(TemplateMatcher templateMatcher, CtReference template, 41 CtReference toMatch); 42 43 } 44 | Popular Tags |