UI/BrowserModel.py

changeset 1303
6018d7ac3aec
parent 1227
c5db073a124f
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1302:95538c8d07c1 1303:6018d7ac3aec
1526 1526
1527 return line number defining the object (integer) 1527 return line number defining the object (integer)
1528 """ 1528 """
1529 return self._attributeObject.lineno 1529 return self._attributeObject.lineno
1530 1530
1531 def linenos(self):
1532 """
1533 Public method returning the line numbers this object is assigned to.
1534
1535 return line number the object is assigned to (list of integers)
1536 """
1537 return self._attributeObject.linenos[:]
1538
1531 def lessThan(self, other, column, order): 1539 def lessThan(self, other, column, order):
1532 """ 1540 """
1533 Public method to check, if the item is less than the other one. 1541 Public method to check, if the item is less than the other one.
1534 1542
1535 @param other reference to item to compare against (BrowserItem) 1543 @param other reference to item to compare against (BrowserItem)

eric ide

mercurial