FtpURI.st
changeset 1309 c752d54f4e09
parent 1286 cbf02dc8ddef
child 1310 948ed141b0b7
equal deleted inserted replaced
1308:d7bea6d0b3b6 1309:c752d54f4e09
       
     1 "
       
     2  COPYRIGHT (c) 2002 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
     1 "{ Package: 'stx:libbasic2' }"
    13 "{ Package: 'stx:libbasic2' }"
     2 
    14 
     3 HierarchicalURI subclass:#FtpURI
    15 HierarchicalURI subclass:#FtpURI
     4 	instanceVariableNames:''
    16 	instanceVariableNames:''
     5 	classVariableNames:''
    17 	classVariableNames:''
     6 	poolDictionaries:''
    18 	poolDictionaries:''
     7 	category:'Resources'
    19 	category:'Resources'
     8 !
    20 !
     9 
    21 
       
    22 !FtpURI class methodsFor:'documentation'!
       
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 2002 by eXept Software AG
       
    27               All Rights Reserved
       
    28 
       
    29  This software is furnished under a license and may be used
       
    30  only in accordance with the terms of that license and with the
       
    31  inclusion of the above copyright notice.   This software may not
       
    32  be provided or otherwise made available to, or used by, any
       
    33  other person.  No title to or ownership of the software is
       
    34  hereby transferred.
       
    35 "
       
    36 ! !
    10 
    37 
    11 !FtpURI class methodsFor:'accessing'!
    38 !FtpURI class methodsFor:'accessing'!
    12 
    39 
    13 schemes
    40 schemes
    14 
    41 
   381 ! !
   408 ! !
   382 
   409 
   383 !FtpURI class methodsFor:'documentation'!
   410 !FtpURI class methodsFor:'documentation'!
   384 
   411 
   385 version
   412 version
   386     ^ '$Header: /cvs/stx/stx/libbasic2/FtpURI.st,v 1.13 2003-07-25 09:02:20 tm Exp $'
   413     ^ '$Header: /cvs/stx/stx/libbasic2/FtpURI.st,v 1.14 2003-08-29 19:33:20 cg Exp $'
   387 ! !
   414 ! !