25 @param args dictionary containing the checker arguments |
25 @param args dictionary containing the checker arguments |
26 @type dict |
26 @type dict |
27 @param checker reference to the checker |
27 @param checker reference to the checker |
28 @type ImportsChecker |
28 @type ImportsChecker |
29 """ |
29 """ |
30 self.__appImportNames = args.get("ApplicationModuleNames", []) |
30 self.__appImportNames = args.get("ApplicationPackageNames", []) |
31 self.__checker = checker |
31 self.__checker = checker |
32 |
32 |
33 self.violations = [] |
33 self.violations = [] |
34 |
34 |
35 def visit(self, node): |
35 def visit(self, node): |