Reference.st
changeset 1450 8c466a8a125a
parent 1265 13013cdf0bc8
equal deleted inserted replaced
1449:612489f03d26 1450:8c466a8a125a
       
     1 "
       
     2  COPYRIGHT (c) 2003 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
     1 "{ Package: 'stx:libcomp' }"
    13 "{ Package: 'stx:libcomp' }"
     2 
    14 
     3 Object variableSubclass:#Reference
    15 Object variableSubclass:#Reference
     4 	instanceVariableNames:''
    16 	instanceVariableNames:''
     5 	classVariableNames:''
    17 	classVariableNames:''
    27 	poolDictionaries:''
    39 	poolDictionaries:''
    28 	privateIn:Reference
    40 	privateIn:Reference
    29 !
    41 !
    30 
    42 
    31 !Reference class methodsFor:'documentation'!
    43 !Reference class methodsFor:'documentation'!
       
    44 
       
    45 copyright
       
    46 "
       
    47  COPYRIGHT (c) 2003 by eXept Software AG
       
    48               All Rights Reserved
       
    49 
       
    50  This software is furnished under a license and may be used
       
    51  only in accordance with the terms of that license and with the
       
    52  inclusion of the above copyright notice.   This software may not
       
    53  be provided or otherwise made available to, or used by, any
       
    54  other person.  No title to or ownership of the software is
       
    55  hereby transferred.
       
    56 "
       
    57 !
    32 
    58 
    33 example1
    59 example1
    34     |foo ref|
    60     |foo ref|
    35 
    61 
    36     ref := Reference forLocal:1 in:thisContext.
    62     ref := Reference forLocal:1 in:thisContext.
    91 
   117 
    92 value:newValue
   118 value:newValue
    93     ^ context varAt:index put:newValue
   119     ^ context varAt:index put:newValue
    94 ! !
   120 ! !
    95 
   121 
       
   122 !Reference class methodsFor:'documentation'!
       
   123 
       
   124 version
       
   125     ^ '$Header: /cvs/stx/stx/libcomp/Reference.st,v 1.3 2003-08-29 19:21:52 cg Exp $'
       
   126 ! !