AbstractHierarchicalItem.st
changeset 6073 b7d061c67140
parent 6064 44377a9b9729
child 6095 42a1a76ba814
equal deleted inserted replaced
6072:f62d23bf936f 6073:b7d061c67140
   886     "Modified: / 28-07-2018 / 13:45:07 / Claus Gittinger"
   886     "Modified: / 28-07-2018 / 13:45:07 / Claus Gittinger"
   887     "Modified: / 02-08-2018 / 15:51:19 / Stefan Vogel"
   887     "Modified: / 02-08-2018 / 15:51:19 / Stefan Vogel"
   888 !
   888 !
   889 
   889 
   890 removeIndex:anIndex
   890 removeIndex:anIndex
   891     "remove the child at an index"
   891     "remove the child at an index.
       
   892      Returns the receiver"
   892 
   893 
   893     anIndex > 0 ifTrue:[
   894     anIndex > 0 ifTrue:[
   894         self removeFromIndex:anIndex toIndex:anIndex
   895         self removeFromIndex:anIndex toIndex:anIndex
   895     ]
   896     ]
       
   897 
       
   898     "Modified (comment): / 24-06-2019 / 12:47:27 / Claus Gittinger"
   896 ! !
   899 ! !
   897 
   900 
   898 !AbstractHierarchicalItem methodsFor:'basic adding & removing'!
   901 !AbstractHierarchicalItem methodsFor:'basic adding & removing'!
   899 
   902 
   900 basicAdd:aChild sortBlock:aBlockOrNil
   903 basicAdd:aChild sortBlock:aBlockOrNil