31 @param view reference to the view object (UMLGraphicsView) |
33 @param view reference to the view object (UMLGraphicsView) |
32 @param project reference to the project object (Project) |
34 @param project reference to the project object (Project) |
33 @param package name of a python package to be shown (string) |
35 @param package name of a python package to be shown (string) |
34 @keyparam noAttrs flag indicating, that no attributes should be shown (boolean) |
36 @keyparam noAttrs flag indicating, that no attributes should be shown (boolean) |
35 """ |
37 """ |
36 super().__init__(dialog, view, project) |
38 super(PackageDiagramBuilder, self).__init__(dialog, view, project) |
37 self.setObjectName("PackageDiagram") |
39 self.setObjectName("PackageDiagram") |
38 |
40 |
39 self.package = Utilities.normabspath(package) |
41 self.package = Utilities.normabspath(package) |
40 self.noAttrs = noAttrs |
42 self.noAttrs = noAttrs |
41 |
43 |