stx_libbasic.st
branchjv
changeset 20727 fb8c5591428b
parent 20578 39641ba8d6e0
parent 20662 89b49379912a
child 21024 8734987eb5c7
--- a/stx_libbasic.st	Wed Oct 12 07:05:13 2016 +0200
+++ b/stx_libbasic.st	Tue Oct 25 12:31:42 2016 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2006 by eXept Software AG
 	      All Rights Reserved
@@ -94,7 +92,8 @@
      are extended by myself.
      They are mandatory, because we need these packages as a prerequisite for loading and compiling.
      This method is generated automatically,
-     by searching along the inheritance chain of all of my classes."
+     by searching along the inheritance chain of all of my classes.
+     Please take a look at the #referencedPreRequisites method as well."
 
     ^ #(
     )
@@ -103,12 +102,13 @@
 referencedPreRequisites
     "list packages which are a prerequisite, because they contain
      classes which are referenced by my classes.
-     We do not need these packages as a prerequisite for compiling or loading,
+     These packages are NOT needed as a prerequisite for compiling or loading,
      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.
      This method is generated automatically,
-     by searching all classes (and their packages) which are referenced by my classes."
+     by searching all classes (and their packages) which are referenced by my classes.
+     Please also take a look at the #mandatoryPreRequisites method"
 
     ^ #(
     )
@@ -543,7 +543,7 @@
         (SimpleExternalLibraryFunction autoload)
         (QualifiedName autoload)
         (AbstractDesktop autoload)
-        (BadRomanNumberFormatError autoload)
+        BadRomanNumberFormatError 
         (#'CharacterEncoderImplementations::BIG5' autoload)
         (#'CharacterEncoderImplementations::CNS11643' autoload)
         (#'CharacterEncoderImplementations::GB2313_1980' autoload)
@@ -577,7 +577,7 @@
         (#'CharacterEncoderImplementations::NEXT' autoload)
         (CmdLineParserTest autoload)
         (GNOMEDesktop autoload)
-        (ImaginaryResultError autoload)
+        ImaginaryResultError 
         (LargeFloat autoload)
         (MacFilename macos autoload)
         (MappedExternalBytes autoload)
@@ -585,10 +585,19 @@
         (SmalltalkDesktop autoload)
         (SystemNotification autoload)
         (TextCollectorStream autoload)
-        (UnboundedExternalStream autoload)
+        UnboundedExternalStream
         (UnixDesktop autoload)
         (WindowsDesktop autoload)
         (XDGDesktop autoload)
+        UnboxedIntegerArray
+        WordArray
+        IntegerArray
+        LongIntegerArray
+        SignedIntegerArray
+        SignedLongIntegerArray
+        SignedWordArray
+        BitArray
+        BooleanArray
     )
 !