Link.st
changeset 19971 9bf68cbff965
parent 17260 c86df97b698d
child 20078 a680abc90e84
equal deleted inserted replaced
19970:b37f85226106 19971:9bf68cbff965
    38 
    38 
    39 documentation
    39 documentation
    40 "
    40 "
    41     this class provides the basic functionality for Link-nodes.
    41     this class provides the basic functionality for Link-nodes.
    42     Links are abstract in that they do not provide a place for storing 
    42     Links are abstract in that they do not provide a place for storing 
    43     something, just the link-chain. 
    43     something, just the link-chain. So concrete linkedList elements
       
    44     must subclass from me and add their value slots.
       
    45     
    44     For more usability look at ValueLink or other subclasses.
    46     For more usability look at ValueLink or other subclasses.
    45 
    47 
    46     [author:]
    48     [author:]
    47         Claus Gittinger
    49         Claus Gittinger
    48 "
    50 "
    69 ! !
    71 ! !
    70 
    72 
    71 !Link class methodsFor:'documentation'!
    73 !Link class methodsFor:'documentation'!
    72 
    74 
    73 version
    75 version
    74     ^ '$Header: /cvs/stx/stx/libbasic/Link.st,v 1.13 2014-12-29 23:51:04 cg Exp $'
    76     ^ '$Header$'
    75 ! !
    77 ! !
    76 
    78