added:
authorStefan Vogel <sv@exept.de>
Tue, 24 Apr 2012 16:56:08 +0200
changeset 14122 36f1fe4ddd0f
parent 14121 fea92d19d1a4
child 14123 a33fc6cc4332
added: #isUnicode16String #isUnicode32String #isUnicodeString
CharacterArray.st
--- a/CharacterArray.st	Tue Apr 24 14:03:33 2012 +0200
+++ b/CharacterArray.st	Tue Apr 24 16:56:08 2012 +0200
@@ -4274,6 +4274,7 @@
 ! !
 
 
+
 !CharacterArray methodsFor:'padded copying'!
 
 centerPaddedTo:newSize
@@ -4795,6 +4796,7 @@
     "Modified: 17.4.1997 / 12:50:23 / cg"
 ! !
 
+
 !CharacterArray methodsFor:'special string converting'!
 
 expandPlaceholdersWith:argArrayOrDictionary
@@ -5960,6 +5962,18 @@
     "Modified: / 13-09-2006 / 11:35:15 / cg"
 !
 
+isUnicode16String
+    ^ false
+!
+
+isUnicode32String
+    ^ false
+!
+
+isUnicodeString
+    ^ false
+!
+
 isValidSmalltalkIdentifier
     "return true, if the receivers characters make up a valid smalltalk identifier"
 
@@ -6066,11 +6080,11 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.470 2012-03-08 03:09:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.471 2012-04-24 14:56:08 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.470 2012-03-08 03:09:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.471 2012-04-24 14:56:08 stefan Exp $'
 ! !
 
 CharacterArray initialize!