ExternalAddress.st
changeset 3487 565a1a49fbf9
parent 2957 46015145c398
child 3552 686923fc2096
equal deleted inserted replaced
3486:bbd47c3011e5 3487:565a1a49fbf9
     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 'From Smalltalk/X, Version:3.1.10 on 20-sep-1997 at 12:04:29 am'                !
       
    14 
    12 
    15 Object subclass:#ExternalAddress
    13 Object subclass:#ExternalAddress
    16 	instanceVariableNames:'address*'
    14 	instanceVariableNames:'address*'
    17 	classVariableNames:''
    15 	classVariableNames:''
    18 	poolDictionaries:''
    16 	poolDictionaries:''
   185 !ExternalAddress methodsFor:'printing & storing'!
   183 !ExternalAddress methodsFor:'printing & storing'!
   186 
   184 
   187 displayString
   185 displayString
   188     "return a printed representation of the receiver for displaying"
   186     "return a printed representation of the receiver for displaying"
   189 
   187 
   190     ^ 'ExternalAddress at:' , (self address printStringRadix:16)
   188     ^ self class name , ' at:' , (self address printStringRadix:16)
   191 
   189 
   192     "Modified: 20.9.1997 / 11:39:18 / cg"
   190     "Modified: / 26.5.1998 / 16:11:50 / cg"
   193 ! !
   191 ! !
   194 
   192 
   195 !ExternalAddress class methodsFor:'documentation'!
   193 !ExternalAddress class methodsFor:'documentation'!
   196 
   194 
   197 version
   195 version
   198     ^ '$Header: /cvs/stx/stx/libbasic/ExternalAddress.st,v 1.11 1997-09-20 21:06:32 cg Exp $'
   196     ^ '$Header: /cvs/stx/stx/libbasic/ExternalAddress.st,v 1.12 1998-05-26 15:11:57 cg Exp $'
   199 ! !
   197 ! !