*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 24 May 1996 17:02:32 +0200
changeset 283 3fdbe3ef9a1d
parent 282 7f91d09a768b
child 284 43bedc665d71
*** empty log message ***
Structure.st
--- a/Structure.st	Fri May 24 17:00:36 1996 +0200
+++ b/Structure.st	Fri May 24 17:02:32 1996 +0200
@@ -1,15 +1,41 @@
+"
+ COPYRIGHT (c) 1996 by Claus Gittinger
+              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.
+"
+
 Object subclass:#Structure
 	instanceVariableNames:'superclass flags selectorArray methodArray otherSupers instSize
 		i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11 i12 i13 i14 i15 i16 i17 i18
 		i19 i20'
 	classVariableNames:'OneInstance DummyClass'
 	poolDictionaries:''
-	category:'Collections-Arrayed'
+	category:'Programming-Support'
 !
 
 
 !Structure class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1996 by Claus Gittinger
+              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
 "
     are you tired of using arrays or identityDictionaries, when
@@ -824,7 +850,7 @@
 !Structure class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Structure.st,v 1.1 1996-05-24 15:00:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Structure.st,v 1.2 1996-05-24 15:02:32 cg Exp $'
 ! !
 
 Structure initialize!