ExternalAddress.st
changeset 2957 46015145c398
parent 2877 cc3a4903d692
child 3487 565a1a49fbf9
equal deleted inserted replaced
2956:952a09bdeed1 2957:46015145c398
     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'                !
    12 
    14 
    13 Object subclass:#ExternalAddress
    15 Object subclass:#ExternalAddress
    14 	instanceVariableNames:'address*'
    16 	instanceVariableNames:'address*'
    15 	classVariableNames:''
    17 	classVariableNames:''
    16 	poolDictionaries:''
    18 	poolDictionaries:''
   181 ! !
   183 ! !
   182 
   184 
   183 !ExternalAddress methodsFor:'printing & storing'!
   185 !ExternalAddress methodsFor:'printing & storing'!
   184 
   186 
   185 displayString
   187 displayString
       
   188     "return a printed representation of the receiver for displaying"
       
   189 
   186     ^ 'ExternalAddress at:' , (self address printStringRadix:16)
   190     ^ 'ExternalAddress at:' , (self address printStringRadix:16)
       
   191 
       
   192     "Modified: 20.9.1997 / 11:39:18 / cg"
   187 ! !
   193 ! !
   188 
   194 
   189 !ExternalAddress class methodsFor:'documentation'!
   195 !ExternalAddress class methodsFor:'documentation'!
   190 
   196 
   191 version
   197 version
   192     ^ '$Header: /cvs/stx/stx/libbasic/ExternalAddress.st,v 1.10 1997-08-20 17:19:47 cg Exp $'
   198     ^ '$Header: /cvs/stx/stx/libbasic/ExternalAddress.st,v 1.11 1997-09-20 21:06:32 cg Exp $'
   193 ! !
   199 ! !