BIG5EncodedString.st
changeset 543 9c29370c7dc8
parent 452 36c5087650fb
child 544 0252a2641433
--- a/BIG5EncodedString.st	Mon Jun 30 15:42:20 1997 +0200
+++ b/BIG5EncodedString.st	Mon Jun 30 16:32:45 1997 +0200
@@ -1,3 +1,16 @@
+"
+ 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.
+"
+
+
 TwoByteString subclass:#BIG5EncodedString
 	instanceVariableNames:''
 	classVariableNames:''
@@ -7,6 +20,21 @@
 
 !BIG5EncodedString 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
 "
     BIG5EncodedString represents 16bit strings encoded in BIG-5.
@@ -41,7 +69,7 @@
 
 !BIG5EncodedString class methodsFor:'code tables'!
 
-romanBIG5DecoderTable
+romanTable
     "return a table to decode from roman ascii to 16 bit BIG5.
      This is experimental - possibly unfinished or incorrect"
 
@@ -79,8 +107,8 @@
           16ra1bc 16ra1bc 16ra1bc 16ra1bc 16ra1bc 16ra1bc 16ra1bc 16ra1bc 
           16ra1bc 16ra1bc 16ra1bc 16ra1bc 16ra1bc 16ra1bc 16ra1bc 16ra1bc ).
 
-    "Created: 17.4.1996 / 18:55:54 / cg"
     "Modified: 27.4.1996 / 13:26:53 / cg"
+    "Created: 30.6.1997 / 14:26:26 / cg"
 ! !
 
 !BIG5EncodedString methodsFor:'queries'!
@@ -98,6 +126,6 @@
 !BIG5EncodedString class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/BIG5EncodedString.st,v 1.8 1996-10-16 08:58:46 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/BIG5EncodedString.st,v 1.9 1997-06-30 14:32:39 cg Exp $'
 ! !
 BIG5EncodedString initialize!