Link.st
changeset 1290 15ba3221b89b
parent 629 2ceefe9b5a19
child 17260 c86df97b698d
child 17711 39faaaf888b4
equal deleted inserted replaced
1289:3abde2c376de 1290:15ba3221b89b
     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 
    12 
    13 Object subclass:#Link
    13 Object subclass:#Link
    14 	 instanceVariableNames:'nextLink'
    14 	instanceVariableNames:'nextLink'
    15 	 classVariableNames:''
    15 	classVariableNames:''
    16 	 poolDictionaries:''
    16 	poolDictionaries:''
    17 	 category:'Collections-Support'
    17 	category:'Collections-Support'
    18 !
    18 !
    19 
    19 
    20 !Link class methodsFor:'documentation'!
    20 !Link class methodsFor:'documentation'!
    21 
    21 
    22 copyright
    22 copyright
    37 "
    37 "
    38     this class provides the basic functionality for Link-nodes.
    38     this class provides the basic functionality for Link-nodes.
    39     Links are abstract in that they do not provide a place for storing 
    39     Links are abstract in that they do not provide a place for storing 
    40     something, just the link-chain. 
    40     something, just the link-chain. 
    41     For more usability look at ValueLink or other subclasses.
    41     For more usability look at ValueLink or other subclasses.
       
    42 
       
    43     [author:]
       
    44         Claus Gittinger
    42 "
    45 "
    43 ! !
    46 ! !
    44 
    47 
    45 !Link methodsFor:'accessing'!
    48 !Link methodsFor:'accessing'!
    46 
    49 
    57 ! !
    60 ! !
    58 
    61 
    59 !Link class methodsFor:'documentation'!
    62 !Link class methodsFor:'documentation'!
    60 
    63 
    61 version
    64 version
    62     ^ '$Header: /cvs/stx/stx/libbasic/Link.st,v 1.11 1995-11-23 17:07:16 cg Exp $'
    65     ^ '$Header: /cvs/stx/stx/libbasic/Link.st,v 1.12 1996-04-25 16:16:29 cg Exp $'
    63 ! !
    66 ! !