Link.st
author claus
Fri, 05 Aug 1994 02:59:40 +0200
changeset 93 e31220cb391f
parent 88 81dacba7a63a
child 379 5b5a130ccd09
permissions -rw-r--r--
*** empty log message ***

"
 COPYRIGHT (c) 1992 by Claus Gittinger
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

Object subclass:#Link
       instanceVariableNames:'nextLink'
       classVariableNames:''
       poolDictionaries:''
       category:'Collections-Support'
!

Link comment:'
COPYRIGHT (c) 1992 by Claus Gittinger
              All Rights Reserved

$Header: /cvs/stx/stx/libbasic/Link.st,v 1.6 1994-08-05 00:58:51 claus Exp $
'!

!Link class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1992 by Claus Gittinger
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

version
"
$Header: /cvs/stx/stx/libbasic/Link.st,v 1.6 1994-08-05 00:58:51 claus Exp $
"
!

documentation
"
    this class provides the basic functionality for Link-nodes.
    Links are abstract in that they do not provide a place for storing 
    something, just the link-chain. 
    For more usability look at ValueLink or other subclasses.
"
! !

!Link methodsFor:'accessing'!

nextLink
    "return the next link"

    ^ nextLink
!

nextLink:aLink
    "set the next link"

    nextLink := aLink
! !