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