Lines Matching refs:IMethod
77 import signature.model.IMethod;
465 Set<IMethod> toMethods = new HashSet<IMethod>(to.getMethods());
466 Set<IMethod> toClosure = getMethodClosure(to);
467 Set<IMethod> fromMethods = new HashSet<IMethod>(from.getMethods());
468 Set<IMethod> fromClosure = getMethodClosure(from);
472 for (IMethod method : fromMethods) {
473 IMethod compatibleMethod = findCompatibleMethod(method, toMethods);
489 for (IMethod method : toMethods) {
490 IMethod compatibleMethod = findCompatibleMethod(method, fromMethods);
501 private IMethod findCompatibleMethod(IMethod method, Set<IMethod> set) {
502 for (IMethod methodFromSet : set) {
511 private Set<IMethod> getMethodClosure(IClassDefinition clazz) {
512 Set<IMethod> closure = new HashSet<IMethod>();
519 private void collectMethods(IClassDefinition clazz, Set<IMethod> closure) {
665 private Set<Modifier> prepareMethodModifiers(IMethod method) {
672 private IMethodDelta compareMethod(IMethod from, IMethod to) {
1430 } else if (from instanceof IMethod) {
1431 IMethod fromMethod = (IMethod) from;
1432 IMethod toMethod = (IMethod) from;