// Check for constructor and log a problem. If it is a constructor,
// don't bother doing anymore checking
if (func_def.getBaseName().equals(interfaceBaseName))
{
interfaceScope.addProblem(new ConstructorInInterfaceProblem(func));
return;
}
// check the modifiers
verifyFunctionModifiers(func);