hivemind.MethodFilter
273274275276277278279280281
private boolean includeMethod(MethodMatcher matcher, MethodSignature sig) { if (matcher == null) return true; MethodContribution mc = (MethodContribution) matcher.get(sig); return mc == null || mc.getInclude(); }
186187188189190191192193194195196197198199200
MethodMatcher result = null; Iterator i = parameters.iterator(); while (i.hasNext()) { MethodContribution mc = (MethodContribution) i.next(); if (result == null) result = new MethodMatcher(); result.put(mc.getMethodPattern(), mc); } return result; }