IndirectValue.st
changeset 2816 a178bb3500fb
parent 2029 136dd7e8228a
child 2817 f8b08ad94d28
equal deleted inserted replaced
2815:cb74506eb9e3 2816:a178bb3500fb
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libview2' }"
    12 "{ Package: 'stx:libview2' }"
    14 
    13 
    15 ValueModel subclass:#IndirectValue
    14 ValueModel subclass:#IndirectValue
    16 	instanceVariableNames:'valueHolder'
    15 	instanceVariableNames:'valueHolder'
    17 	classVariableNames:''
    16 	classVariableNames:''
    85 !IndirectValue methodsFor:'accessing'!
    84 !IndirectValue methodsFor:'accessing'!
    86 
    85 
    87 setValue:newValue 
    86 setValue:newValue 
    88     "physically set my value, without change notifications"
    87     "physically set my value, without change notifications"
    89 
    88 
    90     valueHolder setValue:newValue
    89     valueHolder 
       
    90         value:newValue
       
    91         withoutNotifying:self
    91 !
    92 !
    92 
    93 
    93 setValueHolder:aValueHolder
    94 setValueHolder:aValueHolder
    94     "change my holder"
    95     "change my holder"
    95 
    96 
   135 ! !
   136 ! !
   136 
   137 
   137 !IndirectValue class methodsFor:'documentation'!
   138 !IndirectValue class methodsFor:'documentation'!
   138 
   139 
   139 version
   140 version
   140     ^ '$Header: /cvs/stx/stx/libview2/IndirectValue.st,v 1.5 2004-12-16 11:45:15 cg Exp $'
   141     ^ '$Header: /cvs/stx/stx/libview2/IndirectValue.st,v 1.6 2010-01-20 13:23:44 cg Exp $'
       
   142 !
       
   143 
       
   144 version_CVS
       
   145     ^ '$Header: /cvs/stx/stx/libview2/IndirectValue.st,v 1.6 2010-01-20 13:23:44 cg Exp $'
   141 ! !
   146 ! !