ChangeNotificationParameter.st
author Claus Gittinger <cg@exept.de>
Mon, 19 Apr 2010 15:26:40 +0200
changeset 2265 1ccd8595e269
child 3011 1997ff6e7e55
child 3466 fe41cd6d8e95
permissions -rw-r--r--
initial checkin

"{ Package: 'stx:libbasic3' }"

Array variableSubclass:#ChangeNotificationParameter
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'System-Changes-Notifications'
!

!ChangeNotificationParameter class methodsFor:'documentation'!

documentation
"
    In previous ST/X versions, change notification parameters were often
    arrays, to pass multiple values in an update:with:from: message.

    These are now replaced by instances of this class or subclasses.
    For backward compatibility, instances also respond to the array protocol,
    so old code can access the slots via #at:.
    Should be phased out over time.
"
! !

!ChangeNotificationParameter class methodsFor:'documentation'!

version_CVS
    ^ '$Header: /cvs/stx/stx/libbasic3/ChangeNotificationParameter.st,v 1.1 2010-04-19 13:26:40 cg Exp $'
! !