documentation
authorClaus Gittinger <cg@exept.de>
Thu, 25 Apr 1996 18:18:33 +0200
changeset 254 cccfa2590e6e
parent 253 09aefd01f021
child 255 69a34808bf99
documentation
CacheDict.st
CacheDictionary.st
FileText.st
MappedColl.st
MappedCollection.st
Queue.st
StrColl.st
TwoByteStr.st
ValLink.st
ValueLink.st
--- a/CacheDict.st	Thu Apr 25 18:11:42 1996 +0200
+++ b/CacheDict.st	Thu Apr 25 18:18:33 1996 +0200
@@ -38,6 +38,9 @@
     a CacheDictionary is a Dictionary which will not grow - i.e. keep
     only a limited number of elements.
     It can be used as a cache, for keeping recently used objects alive.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -96,5 +99,5 @@
 !CacheDictionary class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Attic/CacheDict.st,v 1.13 1996-04-20 19:29:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Attic/CacheDict.st,v 1.14 1996-04-25 16:18:33 cg Exp $'
 ! !
--- a/CacheDictionary.st	Thu Apr 25 18:11:42 1996 +0200
+++ b/CacheDictionary.st	Thu Apr 25 18:18:33 1996 +0200
@@ -38,6 +38,9 @@
     a CacheDictionary is a Dictionary which will not grow - i.e. keep
     only a limited number of elements.
     It can be used as a cache, for keeping recently used objects alive.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -96,5 +99,5 @@
 !CacheDictionary class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/CacheDictionary.st,v 1.13 1996-04-20 19:29:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CacheDictionary.st,v 1.14 1996-04-25 16:18:33 cg Exp $'
 ! !
--- a/FileText.st	Thu Apr 25 18:11:42 1996 +0200
+++ b/FileText.st	Thu Apr 25 18:18:33 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 StringCollection subclass:#FileText
-	 instanceVariableNames:'myStream lastLineKnown lastLineOfFile cachedLines cacheLineNr'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Collections-Text'
+	instanceVariableNames:'myStream lastLineKnown lastLineOfFile cachedLines cacheLineNr'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Collections-Text'
 !
 
 !FileText class methodsFor:'documentation'!
@@ -49,6 +49,9 @@
     Otherwise, you will clobber the contents.
 
     It is highly recommended, to use fileText for readonly texts only.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -183,5 +186,5 @@
 !FileText class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/FileText.st,v 1.14 1995-11-23 17:08:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/FileText.st,v 1.15 1996-04-25 16:17:14 cg Exp $'
 ! !
--- a/MappedColl.st	Thu Apr 25 18:11:42 1996 +0200
+++ b/MappedColl.st	Thu Apr 25 18:18:33 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 Collection subclass:#MappedCollection
-	 instanceVariableNames:'domain map'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Collections-Sequenceable'
+	instanceVariableNames:'domain map'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Collections-Sequenceable'
 !
 
 !MappedCollection class methodsFor:'documentation'!
@@ -40,6 +40,9 @@
     between external names and indices into domain, which contains the
     real association.  In order to work properly, the domain and map objects must
     be instances of a subclass of SequenceableCollection or Dictionary. 
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -141,5 +144,5 @@
 !MappedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Attic/MappedColl.st,v 1.14 1995-11-23 17:06:10 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Attic/MappedColl.st,v 1.15 1996-04-25 16:15:38 cg Exp $'
 ! !
--- a/MappedCollection.st	Thu Apr 25 18:11:42 1996 +0200
+++ b/MappedCollection.st	Thu Apr 25 18:18:33 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 Collection subclass:#MappedCollection
-	 instanceVariableNames:'domain map'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Collections-Sequenceable'
+	instanceVariableNames:'domain map'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Collections-Sequenceable'
 !
 
 !MappedCollection class methodsFor:'documentation'!
@@ -40,6 +40,9 @@
     between external names and indices into domain, which contains the
     real association.  In order to work properly, the domain and map objects must
     be instances of a subclass of SequenceableCollection or Dictionary. 
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -141,5 +144,5 @@
 !MappedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/MappedCollection.st,v 1.14 1995-11-23 17:06:10 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/MappedCollection.st,v 1.15 1996-04-25 16:15:38 cg Exp $'
 ! !
--- a/Queue.st	Thu Apr 25 18:11:42 1996 +0200
+++ b/Queue.st	Thu Apr 25 18:18:33 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 Collection subclass:#Queue
-	 instanceVariableNames:'contentsArray readPosition writePosition tally'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Collections-Ordered'
+	instanceVariableNames:'contentsArray readPosition writePosition tally'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Collections-Ordered'
 !
 
 !Queue class methodsFor:'documentation'!
@@ -49,6 +49,9 @@
 
     See SharedQueue for a class which is safe with processes and blocks
     on write when full or on read when empty.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -200,5 +203,5 @@
 !Queue class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Queue.st,v 1.15 1995-11-23 17:05:39 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Queue.st,v 1.16 1996-04-25 16:15:14 cg Exp $'
 ! !
--- a/StrColl.st	Thu Apr 25 18:11:42 1996 +0200
+++ b/StrColl.st	Thu Apr 25 18:18:33 1996 +0200
@@ -37,12 +37,15 @@
 "
     StringCollection is an variable sized array of lines which are strings.
     WARNING:
-	This class is temporary (a historic leftover) - it may change or
-	even vanish in the future. Use OrderedCollections or other standard
-	classes to represent collections of strings.
+        This class is temporary (a historic leftover) - it may change or
+        even vanish in the future. Use OrderedCollections or other standard
+        classes to represent collections of strings.
 
     StringCollection used to be called Text, but this is a very bad name
      - there is something totally different also named Text in ST-80 ...
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -217,5 +220,5 @@
 !StringCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Attic/StrColl.st,v 1.24 1996-03-04 16:11:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Attic/StrColl.st,v 1.25 1996-04-25 16:18:04 cg Exp $'
 ! !
--- a/TwoByteStr.st	Thu Apr 25 18:11:42 1996 +0200
+++ b/TwoByteStr.st	Thu Apr 25 18:18:33 1996 +0200
@@ -37,6 +37,9 @@
 "
     TwoByteStrings are like strings, but storing 16bits per character.
     The integration of them into the system is not completed ....
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -106,6 +109,6 @@
 !TwoByteString class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Attic/TwoByteStr.st,v 1.24 1996-04-22 14:18:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Attic/TwoByteStr.st,v 1.25 1996-04-25 16:17:19 cg Exp $'
 ! !
 TwoByteString initialize!
--- a/ValLink.st	Thu Apr 25 18:11:42 1996 +0200
+++ b/ValLink.st	Thu Apr 25 18:18:33 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 Link subclass:#ValueLink
-	 instanceVariableNames:'value'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Collections-Support'
+	instanceVariableNames:'value'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Collections-Support'
 !
 
 !ValueLink class methodsFor:'documentation'!
@@ -37,6 +37,13 @@
 "
     this class provides Links which can hold a value.
     Instances are typically used as elements in a linkedList.
+
+    [see also:]
+        LinkedList
+        Collection OrderedCollection
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -57,5 +64,5 @@
 !ValueLink class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Attic/ValLink.st,v 1.11 1995-11-23 17:07:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Attic/ValLink.st,v 1.12 1996-04-25 16:16:15 cg Exp $'
 ! !
--- a/ValueLink.st	Thu Apr 25 18:11:42 1996 +0200
+++ b/ValueLink.st	Thu Apr 25 18:18:33 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 Link subclass:#ValueLink
-	 instanceVariableNames:'value'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Collections-Support'
+	instanceVariableNames:'value'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Collections-Support'
 !
 
 !ValueLink class methodsFor:'documentation'!
@@ -37,6 +37,13 @@
 "
     this class provides Links which can hold a value.
     Instances are typically used as elements in a linkedList.
+
+    [see also:]
+        LinkedList
+        Collection OrderedCollection
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -57,5 +64,5 @@
 !ValueLink class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/ValueLink.st,v 1.11 1995-11-23 17:07:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/ValueLink.st,v 1.12 1996-04-25 16:16:15 cg Exp $'
 ! !