10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt5.QtCore import pyqtSlot |
12 from PyQt5.QtCore import pyqtSlot |
13 from PyQt5.QtWidgets import QDialogButtonBox, QAbstractButton |
13 from PyQt5.QtWidgets import QDialogButtonBox, QAbstractButton |
14 |
14 |
15 from Ui_IntroduceFactoryDialog import Ui_IntroduceFactoryDialog |
15 from .Ui_IntroduceFactoryDialog import Ui_IntroduceFactoryDialog |
16 from RefactoringDialogBase import RefactoringDialogBase |
16 from .RefactoringDialogBase import RefactoringDialogBase |
17 |
17 |
18 |
18 |
19 class IntroduceFactoryDialog(RefactoringDialogBase, Ui_IntroduceFactoryDialog): |
19 class IntroduceFactoryDialog(RefactoringDialogBase, Ui_IntroduceFactoryDialog): |
20 """ |
20 """ |
21 Class implementing the Introduce Factory dialog. |
21 Class implementing the Introduce Factory dialog. |