if (c instanceof FunctionDefinition)
{
FunctionDefinition classMethod = (FunctionDefinition)c;
if (!classMethod.hasCompatibleSignature(interfMethod, project))
{
problems.add(new IncompatibleInterfaceMethodProblem(classMethod,
interfMethod.getBaseName(),
ifaceName,
cls.getBaseName()));
}