commentary
authorClaus Gittinger <cg@exept.de>
Thu, 25 Apr 1996 13:11:38 +0200
changeset 1283 2c533653efa3
parent 1282 3f5eda57c516
child 1284 c3829892852b
commentary
ArithVal.st
ArithmeticValue.st
ArrColl.st
ArrayedCollection.st
Assoc.st
Association.st
Bag.st
Geometric.st
Obsolete.st
ObsoleteObject.st
--- a/ArithVal.st	Thu Apr 25 13:08:07 1996 +0200
+++ b/ArithVal.st	Thu Apr 25 13:11:38 1996 +0200
@@ -41,21 +41,24 @@
     arithmetic messages. It was inserted into the hierarchy, to allow objects
     like matrices, functions etc. to share the arithmetic methods defined here.
 
-    class variables:
-	ArithmeticSignal        <Signal>        parent of all arithmetic signals
-						(never raised itself)
+    [class variables:]
+        ArithmeticSignal        <Signal>        parent of all arithmetic signals
+                                                (never raised itself)
 
-	DomainErrorSignal       <Signal>        raised upon float errors
-						(for example range in trigonometric)
+        DomainErrorSignal       <Signal>        raised upon float errors
+                                                (for example range in trigonometric)
+
+        DivisionByZeroSignal    <Signal>        raised when division by 0 is attempted
 
-	DivisionByZeroSignal    <Signal>        raised when division by 0 is attempted
+        OverflowSignal          <Signal>        raised on overflow/underflow conditions
+        UnderflowSignal                         in float arithmetic. 
+                                                Notice: some OperatingSystems do not 
+                                                provide enough information for ST/X to 
+                                                extract the real reason for the floatException
+                                                thus raising DomainErrorSignal in these cases.
 
-	OverflowSignal          <Signal>        raised on overflow/underflow conditions
-	UnderflowSignal                         in float arithmetic. 
-						Notice: some OperatingSystems do not 
-						provide enough information for ST/X to 
-						extract the real reason for the floatException
-						thus raising DomainErrorSignal in these cases.
+    [See also:]
+        Number
 "
 ! !
 
@@ -729,6 +732,6 @@
 !ArithmeticValue class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ArithVal.st,v 1.20 1996-04-18 09:54:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ArithVal.st,v 1.21 1996-04-25 11:10:03 cg Exp $'
 ! !
 ArithmeticValue initialize!
--- a/ArithmeticValue.st	Thu Apr 25 13:08:07 1996 +0200
+++ b/ArithmeticValue.st	Thu Apr 25 13:11:38 1996 +0200
@@ -41,21 +41,24 @@
     arithmetic messages. It was inserted into the hierarchy, to allow objects
     like matrices, functions etc. to share the arithmetic methods defined here.
 
-    class variables:
-	ArithmeticSignal        <Signal>        parent of all arithmetic signals
-						(never raised itself)
+    [class variables:]
+        ArithmeticSignal        <Signal>        parent of all arithmetic signals
+                                                (never raised itself)
 
-	DomainErrorSignal       <Signal>        raised upon float errors
-						(for example range in trigonometric)
+        DomainErrorSignal       <Signal>        raised upon float errors
+                                                (for example range in trigonometric)
+
+        DivisionByZeroSignal    <Signal>        raised when division by 0 is attempted
 
-	DivisionByZeroSignal    <Signal>        raised when division by 0 is attempted
+        OverflowSignal          <Signal>        raised on overflow/underflow conditions
+        UnderflowSignal                         in float arithmetic. 
+                                                Notice: some OperatingSystems do not 
+                                                provide enough information for ST/X to 
+                                                extract the real reason for the floatException
+                                                thus raising DomainErrorSignal in these cases.
 
-	OverflowSignal          <Signal>        raised on overflow/underflow conditions
-	UnderflowSignal                         in float arithmetic. 
-						Notice: some OperatingSystems do not 
-						provide enough information for ST/X to 
-						extract the real reason for the floatException
-						thus raising DomainErrorSignal in these cases.
+    [See also:]
+        Number
 "
 ! !
 
@@ -729,6 +732,6 @@
 !ArithmeticValue class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ArithmeticValue.st,v 1.20 1996-04-18 09:54:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ArithmeticValue.st,v 1.21 1996-04-25 11:10:03 cg Exp $'
 ! !
 ArithmeticValue initialize!
--- a/ArrColl.st	Thu Apr 25 13:08:07 1996 +0200
+++ b/ArrColl.st	Thu Apr 25 13:11:38 1996 +0200
@@ -61,6 +61,9 @@
         fix size collection to change their size, and that future
         ST/X versions may be changed to trigger an error (instead of a
         warning) in those situations.
+
+    [see also:]
+        OrderedCollection
 "
 ! !
 
@@ -329,5 +332,5 @@
 !ArrayedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ArrColl.st,v 1.33 1996-04-13 12:27:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ArrColl.st,v 1.34 1996-04-25 11:10:32 cg Exp $'
 ! !
--- a/ArrayedCollection.st	Thu Apr 25 13:08:07 1996 +0200
+++ b/ArrayedCollection.st	Thu Apr 25 13:11:38 1996 +0200
@@ -61,6 +61,9 @@
         fix size collection to change their size, and that future
         ST/X versions may be changed to trigger an error (instead of a
         warning) in those situations.
+
+    [see also:]
+        OrderedCollection
 "
 ! !
 
@@ -329,5 +332,5 @@
 !ArrayedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.33 1996-04-13 12:27:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.34 1996-04-25 11:10:32 cg Exp $'
 ! !
--- a/Assoc.st	Thu Apr 25 13:08:07 1996 +0200
+++ b/Assoc.st	Thu Apr 25 13:11:38 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 LookupKey subclass:#Association
-	 instanceVariableNames:'value'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Collections-Support'
+	instanceVariableNames:'value'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Collections-Support'
 !
 
 !Association class methodsFor:'documentation'!
@@ -40,10 +40,13 @@
     of Dictionary is different).
     Taken by itself, an association is not very useful.
 
-    Instance variables:
+    [Instance variables:]
 
-	key             <Object>        the key (inherited)
-	value           <Object>        the value
+        key             <Object>        the key (inherited)
+        value           <Object>        the value
+
+    [See also:]
+        Dictionary IdentityDictionary
 "
 ! !
 
@@ -122,5 +125,5 @@
 !Association class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Assoc.st,v 1.15 1995-11-23 17:07:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Assoc.st,v 1.16 1996-04-25 11:10:43 cg Exp $'
 ! !
--- a/Association.st	Thu Apr 25 13:08:07 1996 +0200
+++ b/Association.st	Thu Apr 25 13:11:38 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 LookupKey subclass:#Association
-	 instanceVariableNames:'value'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Collections-Support'
+	instanceVariableNames:'value'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Collections-Support'
 !
 
 !Association class methodsFor:'documentation'!
@@ -40,10 +40,13 @@
     of Dictionary is different).
     Taken by itself, an association is not very useful.
 
-    Instance variables:
+    [Instance variables:]
 
-	key             <Object>        the key (inherited)
-	value           <Object>        the value
+        key             <Object>        the key (inherited)
+        value           <Object>        the value
+
+    [See also:]
+        Dictionary IdentityDictionary
 "
 ! !
 
@@ -122,5 +125,5 @@
 !Association class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Association.st,v 1.15 1995-11-23 17:07:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Association.st,v 1.16 1996-04-25 11:10:43 cg Exp $'
 ! !
--- a/Bag.st	Thu Apr 25 13:08:07 1996 +0200
+++ b/Bag.st	Thu Apr 25 13:11:38 1996 +0200
@@ -47,9 +47,15 @@
     (I'd say that an IdentityBag was a better thing to implement ... 
      ... but for compatibility ... we do it here as well)
 
-    Instance variables:
+    [Instance variables:]
+
+        contents        <Dictionary>    for each element, the number of occurrences
+
 
-	contents        <Dictionary>    for each element, the number of occurrences
+    [See also:]
+        Set IdentitySet
+        Dictionary IdentityDictionary
+        OrderedCollection Array
 "
 ! !
 
@@ -294,5 +300,5 @@
 !Bag class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Bag.st,v 1.20 1996-04-12 16:54:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Bag.st,v 1.21 1996-04-25 11:10:55 cg Exp $'
 ! !
--- a/Geometric.st	Thu Apr 25 13:08:07 1996 +0200
+++ b/Geometric.st	Thu Apr 25 13:11:38 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 Object subclass:#Geometric
-	 instanceVariableNames:''
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Graphics-Geometry'
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Graphics-Geometry'
 !
 
 !Geometric class methodsFor:'documentation'!
@@ -83,5 +83,5 @@
 !Geometric class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Geometric.st,v 1.7 1995-11-23 17:42:25 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Geometric.st,v 1.8 1996-04-25 11:09:19 cg Exp $'
 ! !
--- a/Obsolete.st	Thu Apr 25 13:08:07 1996 +0200
+++ b/Obsolete.st	Thu Apr 25 13:11:38 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 nil subclass:#ObsoleteObject
-	 instanceVariableNames:''
-	 classVariableNames:'ObsoleteObjectSignal'
-	 poolDictionaries:''
-	 category:'System-BinaryStorage'
+	instanceVariableNames:''
+	classVariableNames:'ObsoleteObjectSignal'
+	poolDictionaries:''
+	category:'System-BinaryStorage'
 !
 
 !ObsoleteObject class methodsFor:'documentation'!
@@ -182,6 +182,6 @@
 !ObsoleteObject class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Obsolete.st,v 1.9 1996-01-25 15:52:24 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Obsolete.st,v 1.10 1996-04-25 11:11:38 cg Exp $'
 ! !
 ObsoleteObject initialize!
--- a/ObsoleteObject.st	Thu Apr 25 13:08:07 1996 +0200
+++ b/ObsoleteObject.st	Thu Apr 25 13:11:38 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 nil subclass:#ObsoleteObject
-	 instanceVariableNames:''
-	 classVariableNames:'ObsoleteObjectSignal'
-	 poolDictionaries:''
-	 category:'System-BinaryStorage'
+	instanceVariableNames:''
+	classVariableNames:'ObsoleteObjectSignal'
+	poolDictionaries:''
+	category:'System-BinaryStorage'
 !
 
 !ObsoleteObject class methodsFor:'documentation'!
@@ -182,6 +182,6 @@
 !ObsoleteObject class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ObsoleteObject.st,v 1.9 1996-01-25 15:52:24 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ObsoleteObject.st,v 1.10 1996-04-25 11:11:38 cg Exp $'
 ! !
 ObsoleteObject initialize!