BIG5EncodedString.st
changeset 229 3b126b43392b
child 231 5d28780c8859
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/BIG5EncodedString.st	Wed Apr 17 18:51:49 1996 +0200
@@ -0,0 +1,32 @@
+TwoByteString subclass:#BIG5EncodedString
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Collections-Text'
+!
+
+!BIG5EncodedString class methodsFor:'documentation'!
+
+documentation
+"
+    BIG5EncodedString represents 16bit strings encoded in BIG-5.
+    BIG-5 is a popular hanzi code used in Taiwan.
+    Most of you are probably not interrested in those ...
+"
+
+
+! !
+
+!BIG5EncodedString methodsFor:'queries'!
+
+encoding
+    ^ #big5
+
+    "Created: 17.4.1996 / 15:41:15 / cg"
+! !
+
+!BIG5EncodedString class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic2/BIG5EncodedString.st,v 1.1 1996-04-17 16:51:29 cg Exp $'
+! !