1024 |
1024 |
1025 @return lazy population flag (boolean) |
1025 @return lazy population flag (boolean) |
1026 """ |
1026 """ |
1027 return self._lazyPopulation |
1027 return self._lazyPopulation |
1028 |
1028 |
1029 def lessThan(self, other, column, order): |
1029 def lessThan(self, other, column, order): # noqa: U100 |
1030 """ |
1030 """ |
1031 Public method to check, if the item is less than the other one. |
1031 Public method to check, if the item is less than the other one. |
1032 |
1032 |
1033 @param other reference to item to compare against (BrowserItem) |
1033 @param other reference to item to compare against (BrowserItem) |
1034 @param column column number to use for the comparison (integer) |
1034 @param column column number to use for the comparison (integer) |
1228 self.symlink = True |
1228 self.symlink = True |
1229 self.icon = EricPixmapCache.getSymlinkIcon(pixName) |
1229 self.icon = EricPixmapCache.getSymlinkIcon(pixName) |
1230 else: |
1230 else: |
1231 self.icon = EricPixmapCache.getIcon(pixName) |
1231 self.icon = EricPixmapCache.getIcon(pixName) |
1232 |
1232 |
1233 def setName(self, finfo, full=True): |
1233 def setName(self, finfo, full=True): # noqa: U100 |
1234 """ |
1234 """ |
1235 Public method to set the directory name. |
1235 Public method to set the directory name. |
1236 |
1236 |
1237 @param finfo the string for the file (string) |
1237 @param finfo the string for the file (string) |
1238 @param full flag indicating full pathname should be displayed (boolean) |
1238 @param full flag indicating full pathname should be displayed (boolean) |