SelectionInHierarchy.st
changeset 1818 fe99c5c721e9
parent 1191 8d371ffa3adf
child 2928 3edcbf957953
equal deleted inserted replaced
1817:e639d2a9d605 1818:fe99c5c721e9
     9  be provided or otherwise made available to, or used by, any
     9  be provided or otherwise made available to, or used by, any
    10  other person.  No title to or ownership of the software is
    10  other person.  No title to or ownership of the software is
    11  hereby transferred.
    11  hereby transferred.
    12 "
    12 "
    13 
    13 
       
    14 "{ Package: 'stx:libwidg2' }"
       
    15 
    14 Model subclass:#SelectionInHierarchy
    16 Model subclass:#SelectionInHierarchy
    15 	instanceVariableNames:'root list selection'
    17 	instanceVariableNames:'root list selection'
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
    18 	category:'Interface-Support-Models'
    20 	category:'Interface-Support-Models'
   113 	aHierarchyNode hideToFalseForPath.
   115 	aHierarchyNode hideToFalseForPath.
   114 	self setNewList.
   116 	self setNewList.
   115 
   117 
   116 	"Modified: 10.10.94 / 16:13:36 / W.Olberding"! !
   118 	"Modified: 10.10.94 / 16:13:36 / W.Olberding"! !
   117 
   119 
   118 !SelectionInHierarchy methodsFor:'accessing sequencable'!
   120 !SelectionInHierarchy methodsFor:'accessing-sequencable'!
   119 
   121 
   120 addChildAndSubChildren:aHierarchyNode below:existingHierarchyNode after:aChild
   122 addChildAndSubChildren:aHierarchyNode below:existingHierarchyNode after:aChild
   121     "Add a new HierarchyNode to the tree."
   123     "Add a new HierarchyNode to the tree."
   122 
   124 
   123      existingHierarchyNode addChildAndSubChildren:aHierarchyNode after:aChild. 
   125      existingHierarchyNode addChildAndSubChildren:aHierarchyNode after:aChild. 
   334 ! !
   336 ! !
   335 
   337 
   336 !SelectionInHierarchy class methodsFor:'documentation'!
   338 !SelectionInHierarchy class methodsFor:'documentation'!
   337 
   339 
   338 version
   340 version
   339     ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInHierarchy.st,v 1.11 1999-02-11 17:45:41 cg Exp $'
   341     ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInHierarchy.st,v 1.12 2000-08-21 22:45:20 cg Exp $'
   340 ! !
   342 ! !