hivemind.MethodFilter
201202203204205206207208
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; }
273274275276277278279280281
164165166167168169170171172173174175176177178
199200201202203204205206207208209210211212213
215216217218219220221222223
180181182183184185186187188189190191192193194
260261262263264265266267268