MSelList.st
author claus
Wed, 10 May 1995 04:30:46 +0200
changeset 126 40228f4fd66b
parent 114 5d736ee65276
child 129 a0728fb8d54e
permissions -rw-r--r--
.

'From Smalltalk/X, Version:2.10.5 on 25-mar-1995 at 12:12:09 pm'!

SelectionInList subclass:#MultiSelectionInList
	 instanceVariableNames:''
	 classVariableNames:''
	 poolDictionaries:''
	 category:'Interface-Framework'
!

!MultiSelectionInList methodsFor:'selections'!

selections
    |selectionIndices|

    selectionIndices := indexHolder value.
    (selectionIndices isNil 
    or:[selectionIndices isEmpty]) ifFalse:[
        ^ selectionIndices collect:[:index | listHolder value at:index]
    ].
    ^ #()
! !