ConvertedValue.st
changeset 258 9d218cd753c0
parent 114 e577a2f332d0
child 2222 e376d56f37a5
equal deleted inserted replaced
257:c3633aa503ee 258:9d218cd753c0
     1 'From Smalltalk/X, Version:2.10.7 on 24-aug-1995 at 8:28:49'                    !
       
     2 
       
     3 ValueHolder subclass:#ConvertedValue
     1 ValueHolder subclass:#ConvertedValue
     4 	 instanceVariableNames:'conversion'
     2 	instanceVariableNames:'conversion'
     5 	 classVariableNames:''
     3 	classVariableNames:''
     6 	 poolDictionaries:''
     4 	poolDictionaries:''
     7 	 category:'Interface-Support-Channels'
     5 	category:'Interface-Support-Models'
     8 !
     6 !
     9 
     7 
    10 !ConvertedValue class methodsFor:'documentation'!
     8 !ConvertedValue class methodsFor:'documentation'!
    11 
       
    12 version
       
    13     ^ '$Header: /cvs/stx/stx/libview2/ConvertedValue.st,v 1.3 1995-11-11 16:04:22 cg Exp $'
       
    14 !
       
    15 
     9 
    16 documentation
    10 documentation
    17 "
    11 "
    18     a ConvertedValue translates changes on input via a conversion block
    12     a ConvertedValue translates changes on input via a conversion block
    19     to the output. For example, if you want to have a toggle to change the
    13     to the output. For example, if you want to have a toggle to change the
    57 !
    51 !
    58 
    52 
    59 value:input
    53 value:input
    60     ^ super value:(conversion value:input)
    54     ^ super value:(conversion value:input)
    61 ! !
    55 ! !
       
    56 
       
    57 !ConvertedValue class methodsFor:'documentation'!
       
    58 
       
    59 version
       
    60     ^ '$Header: /cvs/stx/stx/libview2/ConvertedValue.st,v 1.4 1996-05-10 16:42:53 cg Exp $'
       
    61 ! !