SocketAddress.st
changeset 488 b0c17a5ff8ea
parent 210 d940e6a66526
child 602 b7afbf8a1589
equal deleted inserted replaced
487:0230ee378075 488:b0c17a5ff8ea
     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:#SocketAddress
    13 Object subclass:#SocketAddress
    14 	 instanceVariableNames:''
    14 	instanceVariableNames:''
    15 	 classVariableNames:''
    15 	classVariableNames:''
    16 	 poolDictionaries:''
    16 	poolDictionaries:''
    17 	 category:'ST80-Compatibility'
    17 	category:'ST80-Compatibility'
    18 !
    18 !
    19 
    19 
    20 !SocketAddress class methodsFor:'documentation'!
    20 !SocketAddress class methodsFor:'documentation'!
    21 
    21 
    22 copyright
    22 copyright
    29  inclusion of the above copyright notice.   This software may not
    29  inclusion of the above copyright notice.   This software may not
    30  be provided or otherwise made available to, or used by, any
    30  be provided or otherwise made available to, or used by, any
    31  other person.  No title to or ownership of the software is
    31  other person.  No title to or ownership of the software is
    32  hereby transferred.
    32  hereby transferred.
    33 "
    33 "
    34 !
       
    35 
       
    36 version
       
    37     ^ '$Header: /cvs/stx/stx/libbasic2/SocketAddress.st,v 1.4 1996-03-21 17:59:54 cg Exp $'
       
    38 !
    34 !
    39 
    35 
    40 documentation
    36 documentation
    41 "
    37 "
    42     Abstract superclass for subclasses implementing various IPC addressing schemes.
    38     Abstract superclass for subclasses implementing various IPC addressing schemes.
    75     self error:'no more mimicri implemented yet ...'
    71     self error:'no more mimicri implemented yet ...'
    76 ! !
    72 ! !
    77 
    73 
    78 !SocketAddress methodsFor:'queries'!
    74 !SocketAddress methodsFor:'queries'!
    79 
    75 
       
    76 address
       
    77     ^ self subclassResponsibility
       
    78 !
       
    79 
    80 hostName
    80 hostName
    81     ^ self subclassResponsibility
    81     ^ self subclassResponsibility
    82 
    82 
    83     "Created: 2.11.1995 / 11:17:51 / cg"
    83     "Created: 2.11.1995 / 11:17:51 / cg"
    84 !
    84 !
    85 
    85 
    86 portOrName
    86 portOrName
    87     ^ self subclassResponsibility
    87     ^ self subclassResponsibility
    88 !
       
    89 
       
    90 address
       
    91     ^ self subclassResponsibility
       
    92 ! !
    88 ! !
    93 
    89 
       
    90 !SocketAddress class methodsFor:'documentation'!
       
    91 
       
    92 version
       
    93     ^ '$Header: /cvs/stx/stx/libbasic2/SocketAddress.st,v 1.5 1997-01-27 11:38:09 cg Exp $'
       
    94 ! !