InterestConverterWithParameters.st
author Claus Gittinger <cg@exept.de>
Wed, 18 Jul 2007 14:16:40 +0200
changeset 1891 af37298a4b38
parent 1614 3beb63c77ddd
child 2898 beaeff8d99df
permissions -rw-r--r--
printing/storing; ms handling

"
 COPYRIGHT (c) 2002 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

"{ Package: 'stx:libbasic2' }"

InterestConverter subclass:#InterestConverterWithParameters
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Interface-Support-Models'
!

!InterestConverterWithParameters class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2002 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

documentation
"
    like a normal interestconverter, but passes the change parameter(s).
    Especially useful to simulate the dolphin event trigger mechanism.

    [author:]
        Claus Gittinger
"
! !

!InterestConverterWithParameters methodsFor:'change & update'!

update:something with:parameters from:someObject
    (aspect isNil or:[aspect == something]) ifTrue:[
        destination perform:selector withArguments:parameters
    ]
! !

!InterestConverterWithParameters class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic2/InterestConverterWithParameters.st,v 1.2 2006-03-15 10:24:50 cg Exp $'
! !