63 """ |
63 """ |
64 Public method to check the completeness of the page. |
64 Public method to check the completeness of the page. |
65 |
65 |
66 @return flag indicating completeness (boolean) |
66 @return flag indicating completeness (boolean) |
67 """ |
67 """ |
68 return self.serverEdit.text() != "" and \ |
68 return ( |
69 self.userNameEdit.text() != "" and \ |
69 self.serverEdit.text() != "" and |
70 self.passwordEdit.text() != "" and \ |
70 self.userNameEdit.text() != "" and |
|
71 self.passwordEdit.text() != "" and |
71 self.pathEdit.text() != "" |
72 self.pathEdit.text() != "" |
|
73 ) |