#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Wed, 22 Jan 2020 16:47:21 +0100
changeset 8979 832d5e231103
parent 8978 9eb52fdbdc96
child 8980 d36d050a16af
#OTHER by cg x
stx_libview.st
--- a/stx_libview.st	Wed Jan 22 16:47:19 2020 +0100
+++ b/stx_libview.st	Wed Jan 22 16:47:21 2020 +0100
@@ -81,6 +81,9 @@
      This are packages containing superclasses of my classes and classes which
      are extended by myself.
      They are mandatory, because we need these packages as a prerequisite for loading and compiling.
+     When loading whole packages,
+     mandatoryPreRequisites will be automatically loaded
+     BEFORE this packet has been loaded. 
      This method is generated automatically,
      by searching along the inheritance chain of all of my classes.
      Please take a look at the #referencedPreRequisites method as well."
@@ -97,15 +100,16 @@
      however, a class from it may be referenced during execution and having it
      unloaded then may lead to a runtime doesNotUnderstand error, unless the caller
      includes explicit checks for the package being present.
+     When loading whole packages,
+     referencedPreRequisites will be automatically loaded
+     AFTER this packet has been loaded. 
      This method is generated automatically,
      by searching all classes (and their packages) which are referenced by my classes.
      Please also take a look at the #mandatoryPreRequisites method"
 
     ^ #(
-        #'stx:libbasic2'    "UUID - referenced by DisplayRootView>>uuid"
+        #'stx:libbasic2'    "Base64Coder - referenced by ImageReader class>>fromBase64Stream:"
     )
-
-    "Modified: / 31-01-2017 / 13:35:33 / stefan"
 ! !
 
 !stx_libview class methodsFor:'description - compilation'!