1 15 package org.apache.hivemind.methodmatch; 16 17 import org.apache.hivemind.service.MethodSignature; 18 19 24 public class ExactNameFilter extends MethodFilter 25 { 26 private String _name; 27 28 public ExactNameFilter(String name) 29 { 30 _name = name; 31 } 32 33 public boolean matchMethod(MethodSignature sig) 34 { 35 return sig.getName().equals(_name); 36 } 37 38 } 39 | Popular Tags |