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 8 13 public class DefaultParameterMatcher implements ParameterMatcher { 14 15 19 public boolean match(TemplateMatcher templateMatcher, CtElement template, 20 CtElement toMatch) { 21 return true; 22 } 23 24 28 public boolean match(TemplateMatcher templateMatcher, CtReference template, CtReference toMatch) { 29 return true; 31 } 32 33 } 34 | Popular Tags |