return compilationUnitCache.getSignatures(type, methodName);
}
public void changeInvocationsTo(String fromClass, String fromMethodName, String[] fromSignature, String code) {
MethodDeclaration fromMethodDeclaration = compilationUnitCache.getMethodDeclaration(fromClass, fromMethodName, fromSignature);
final IMethod fromMethod = (IMethod) fromMethodDeclaration.resolveBinding().getJavaElement();
BlockModifier blockModifier = new ConvertMethodInvocationToCode(fromMethod, code);
modifyBlocks(fromMethod, blockModifier);
}