diff -r a69e560aeebf -r 0feb451128af JISEncodedString.st --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/JISEncodedString.st Sat Feb 24 22:58:59 1996 +0100 @@ -0,0 +1,53 @@ +" + COPYRIGHT (c) 1996 by Claus Gittinger + All Rights Reserved + + This software is furnished under a license and may be used + only in accordance with the terms of that license and with the + inclusion of the above copyright notice. This software may not + be provided or otherwise made available to, or used by, any + other person. No title to or ownership of the software is + hereby transferred. +" + +TwoByteString subclass:#JISEncodedString + instanceVariableNames:'' + classVariableNames:'' + poolDictionaries:'' + category:'Collections-Text' +! + +!JISEncodedString class methodsFor:'documentation'! + +copyright +" + COPYRIGHT (c) 1995 by Claus Gittinger + All Rights Reserved + + This software is furnished under a license and may be used + only in accordance with the terms of that license and with the + inclusion of the above copyright notice. This software may not + be provided or otherwise made available to, or used by, any + other person. No title to or ownership of the software is + hereby transferred. +" +! + +documentation +" + JISEncodedString represent strings encoded in JIS. + Most of you are probably not interrested in those ... +" +! ! + +!JISEncodedString methodsFor:'queries'! + +encoding + ^ #jis +! ! + +!JISEncodedString class methodsFor:'documentation'! + +version + ^ '$Header: /cvs/stx/stx/libbasic2/JISEncodedString.st,v 1.1 1996-02-24 21:58:56 cg Exp $' +! !