checkin from browser
authorcg
Tue, 20 Oct 1998 13:03:34 +0000
changeset 394 1a853ab08431
parent 393 1efe41b5bc98
child 395 ea3f9047f937
checkin from browser
JavaBuiltInClassPointerRef.st
--- a/JavaBuiltInClassPointerRef.st	Mon Oct 19 22:41:29 1998 +0000
+++ b/JavaBuiltInClassPointerRef.st	Tue Oct 20 13:03:34 1998 +0000
@@ -81,12 +81,18 @@
     (nameandType startsWith:'[C') ifTrue:[
         ^ String "/ soon: TwoByteString
     ].
+    (nameandType startsWith:'[D') ifTrue:[
+        ^ DoubleArray 
+    ].
+    (nameandType startsWith:'[F') ifTrue:[
+        ^ FloatArray 
+    ].
 
 self halt.
     ^ self
 
     "Created: / 13.1.1998 / 00:02:39 / cg"
-    "Modified: / 6.2.1998 / 01:20:08 / cg"
+    "Modified: / 20.10.1998 / 15:03:12 / cg"
 !
 
 asClassPointerRef
@@ -121,5 +127,5 @@
 !JavaBuiltInClassPointerRef class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaBuiltInClassPointerRef.st,v 1.6 1998/02/06 00:32:22 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaBuiltInClassPointerRef.st,v 1.7 1998/10/20 13:03:34 cg Exp $'
 ! !