GBString.st
changeset 260 427397326fac
parent 240 7af04274190d
child 261 2fd450dd712f
equal deleted inserted replaced
259:6d36f3ac42a2 260:427397326fac
    16 
    16 
    17 
    17 
    18 
    18 
    19 ! !
    19 ! !
    20 
    20 
       
    21 !GBEncodedString class methodsFor:'initialization'!
       
    22 
       
    23 initialize
       
    24     "initialize the class - private"
       
    25 
       
    26     self flags:(Behavior flagWords)
       
    27 
       
    28     "
       
    29      GBEncodedString initialize
       
    30     "
       
    31 
       
    32     "Created: 27.4.1996 / 13:12:17 / cg"
       
    33 ! !
       
    34 
    21 !GBEncodedString methodsFor:'queries'!
    35 !GBEncodedString methodsFor:'queries'!
    22 
    36 
    23 encoding
    37 encoding
    24     "return the strings encoding; Here, we return a gb encoding"
    38     "return the strings encoding; Here, we return a gb encoding"
    25 
    39 
    30 ! !
    44 ! !
    31 
    45 
    32 !GBEncodedString class methodsFor:'documentation'!
    46 !GBEncodedString class methodsFor:'documentation'!
    33 
    47 
    34 version
    48 version
    35     ^ '$Header: /cvs/stx/stx/libbasic2/Attic/GBString.st,v 1.2 1996-04-20 21:17:21 cg Exp $'
    49     ^ '$Header: /cvs/stx/stx/libbasic2/Attic/GBString.st,v 1.3 1996-04-27 11:13:05 cg Exp $'
    36 ! !
    50 ! !
       
    51 GBEncodedString initialize!