# HG changeset patch # User Claus Gittinger # Date 832950152 -7200 # Node ID 3fdbe3ef9a1d65f8e8fadf145c0550a3acc9a47d # Parent 7f91d09a768bc7f54af1b18d39855c2a8a941cac *** empty log message *** diff -r 7f91d09a768b -r 3fdbe3ef9a1d 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!