*** empty log message ***
authorcg
Mon, 14 Feb 2000 18:53:01 +0000
changeset 667 38f4672d66fb
parent 666 32c3daf4890c
child 668 babdc674688d
*** empty log message ***
JavaClassReader.st
JavaVM.st
--- a/JavaClassReader.st	Mon Feb 14 18:00:23 2000 +0000
+++ b/JavaClassReader.st	Mon Feb 14 18:53:01 2000 +0000
@@ -195,6 +195,10 @@
     Java classPath do:[:path |
         |nm p zar entry zipFile|
 
+        Verbose == true ifTrue:[
+            Transcript showCR:'trying ' , path asFilename pathName, ' ...'.
+        ].
+
         p := path.
         p asFilename isDirectory ifTrue:[
             (p endsWith:Filename separator) ifFalse:[
@@ -205,7 +209,11 @@
                 with:clsName asLowercase
                 with:clsName asUppercase) 
             do:[:tryName |
-                (nm := p , tryName , '.class') asFilename exists ifTrue:[
+                nm := p , tryName , '.class'.
+                Verbose == true ifTrue:[
+                    Transcript showCR:'trying ' , nm, ' ...'.
+                ].
+                nm asFilename exists ifTrue:[
                     (Java isExcludedFromClassPath:nm) ifFalse:[
                         rslt := self loadFileLazy:nm ignoring:loadedClass.
                         rslt notNil ifTrue:[^ rslt].
@@ -213,6 +221,10 @@
                 ].
             ]
         ] ifFalse:[
+            Verbose == true ifTrue:[
+                Transcript showCR:'trying ' , (p asFilename withSuffix:'jar') pathName, ' ...'.
+                Transcript showCR:'and ' , (p asFilename withSuffix:'zip') pathName, ' ...'.
+            ].
             ((zipFile := p asFilename withSuffix:'jar') exists 
             or:[(zipFile := p asFilename withSuffix:'zip') exists]) ifTrue:[
                 zar := ZipArchive oldFileNamed:zipFile.
@@ -2154,6 +2166,6 @@
 !JavaClassReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaClassReader.st,v 1.86 1999/09/25 21:16:35 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaClassReader.st,v 1.87 2000/02/14 18:53:01 cg Exp $'
 ! !
 JavaClassReader initialize!
--- a/JavaVM.st	Mon Feb 14 18:00:23 2000 +0000
+++ b/JavaVM.st	Mon Feb 14 18:53:01 2000 +0000
@@ -7546,6 +7546,14 @@
     "Created: / 1.2.1998 / 20:14:13 / cg"
 ! !
 
+!JavaVM class methodsFor:'native - kaffe.lang'!
+
+_MemoryAdvice_register0:nativeContext
+    "private native void register0()"
+
+    "/ UnimplementedNativeMethodSignal raise
+! !
+
 !JavaVM class methodsFor:'native - netscape'!
 
 _MozillaAppletContext_pMochaOnLoad:nativeContext
@@ -12672,6 +12680,6 @@
 !JavaVM class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.171 2000/01/27 12:05:01 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.172 2000/02/14 18:51:29 cg Exp $'
 ! !
 JavaVM initialize!