*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 16 Nov 2001 11:11:56 +0100
changeset 6190 7a793b79dc05
parent 6189 f4bfc2dacdb7
child 6191 28ac2bdae9e9
*** empty log message ***
ReadOnlySequenceableCollection.st
--- a/ReadOnlySequenceableCollection.st	Thu Nov 15 23:12:01 2001 +0100
+++ b/ReadOnlySequenceableCollection.st	Fri Nov 16 11:11:56 2001 +0100
@@ -1,3 +1,14 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
 "{ Package: 'stx:libbasic' }"
 
 SequenceableCollection subclass:#ReadOnlySequenceableCollection
@@ -7,6 +18,35 @@
 	category:'Collections-Abstract'
 !
 
+!ReadOnlySequenceableCollection class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
+documentation
+"
+    Abstract class which blocks some write access operations.
+
+    See concrete subclasses (such as Interval).
+
+    [author:]
+        Claus Gittinger
+
+    [see also:]
+        SequenceableCollection
+"
+! !
 
 !ReadOnlySequenceableCollection methodsFor:'blocked access'!
 
@@ -60,5 +100,5 @@
 !ReadOnlySequenceableCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ReadOnlySequenceableCollection.st,v 1.1 2001-10-31 10:03:05 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ReadOnlySequenceableCollection.st,v 1.2 2001-11-16 10:11:56 cg Exp $'
 ! !