comments
authorClaus Gittinger <cg@exept.de>
Fri, 17 Sep 1999 11:39:16 +0200
changeset 4741 c4bf20b435e1
parent 4740 fda50b1e4fa5
child 4742 59256069f8f0
comments
Smalltalk.st
--- a/Smalltalk.st	Fri Sep 17 11:36:37 1999 +0200
+++ b/Smalltalk.st	Fri Sep 17 11:39:16 1999 +0200
@@ -4212,7 +4212,8 @@
 !Smalltalk class methodsFor:'system management-packages'!
 
 loadPackage:aPackageIdOrPackage
-    "make certain, that some particular package is loaded into the system"
+    "make certain, that some particular package is loaded into the system.
+     Experimental."
 
     (aPackageIdOrPackage isSymbol 
     or:[aPackageIdOrPackage isString]) ifTrue:[
@@ -4230,8 +4231,8 @@
 
 loadPackage:packageId fromAllSourceFilesInDirectory:aDirectory
     "load all source files found in aDirectory and treat them like
-     a package. Allows for initial import of alien ST-code as a new
-     package."
+     a package. Allows for initial import of alien ST-code as a new package.
+     Experimental."
 
     |p t new anyFail|
 
@@ -4271,7 +4272,8 @@
 !
 
 loadPackage:packageId fromClassLibrary:aFilename
-    "load a package from a compiled classLib"
+    "load a package from a compiled classLib.
+     Experimental."
 
     |p t new|
 
@@ -4296,7 +4298,8 @@
 !
 
 loadPackage:packageId fromLoadAllFile:aFilename
-    "load a package from a loadAll - loader script"
+    "load a package from a loadAll - loader script.
+     Experimental."
 
     |p t new|
 
@@ -4321,15 +4324,23 @@
 !
 
 loadPackage:aPackageId fromProjectFile:f asAutoloaded:doLoadAsAutoloaded
+    "load a package from a .prj spec.
+     Experimental."
+
     ^ false
 !
 
 loadPackage:aPackageId fromZIPArchive:f asAutoloaded:doLoadAsAutoloaded
+    "load a package from a .zip delivery file.
+     Experimental."
+
     ^ false
 !
 
 loadPackageWithId:aPackageId
-    "make certain, that some particular package is loaded into the system"
+    "make certain, that some particular package is loaded into the system.
+     Experimental."
+
 
     ^ self loadPackageWithId:aPackageId asAutoloaded:false
 
@@ -4343,7 +4354,8 @@
 !
 
 loadPackageWithId:aPackageId asAutoloaded:doLoadAsAutoloaded
-    "make certain, that some particular package is loaded into the system"
+    "make certain, that some particular package is loaded into the system.
+     Experimental."
 
     |pkg binaryModule dir packageDirName packageBaseName packageDir f|
 
@@ -4773,5 +4785,5 @@
 !Smalltalk class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.354 1999-09-16 15:45:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.355 1999-09-17 09:39:16 cg Exp $'
 ! !