Structure.st
changeset 283 3fdbe3ef9a1d
parent 282 7f91d09a768b
child 294 6f937c0ba907
equal deleted inserted replaced
282:7f91d09a768b 283:3fdbe3ef9a1d
       
     1 "
       
     2  COPYRIGHT (c) 1996 by Claus Gittinger
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
     1 Object subclass:#Structure
    13 Object subclass:#Structure
     2 	instanceVariableNames:'superclass flags selectorArray methodArray otherSupers instSize
    14 	instanceVariableNames:'superclass flags selectorArray methodArray otherSupers instSize
     3 		i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11 i12 i13 i14 i15 i16 i17 i18
    15 		i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11 i12 i13 i14 i15 i16 i17 i18
     4 		i19 i20'
    16 		i19 i20'
     5 	classVariableNames:'OneInstance DummyClass'
    17 	classVariableNames:'OneInstance DummyClass'
     6 	poolDictionaries:''
    18 	poolDictionaries:''
     7 	category:'Collections-Arrayed'
    19 	category:'Programming-Support'
     8 !
    20 !
     9 
    21 
    10 
    22 
    11 !Structure class methodsFor:'documentation'!
    23 !Structure class methodsFor:'documentation'!
       
    24 
       
    25 copyright
       
    26 "
       
    27  COPYRIGHT (c) 1996 by Claus Gittinger
       
    28               All Rights Reserved
       
    29 
       
    30  This software is furnished under a license and may be used
       
    31  only in accordance with the terms of that license and with the
       
    32  inclusion of the above copyright notice.   This software may not
       
    33  be provided or otherwise made available to, or used by, any
       
    34  other person.  No title to or ownership of the software is
       
    35  hereby transferred.
       
    36 "
       
    37 !
    12 
    38 
    13 documentation
    39 documentation
    14 "
    40 "
    15     are you tired of using arrays or identityDictionaries, when
    41     are you tired of using arrays or identityDictionaries, when
    16     multiple values have to be returned from some method, AND
    42     multiple values have to be returned from some method, AND
   822 ! !
   848 ! !
   823 
   849 
   824 !Structure class methodsFor:'documentation'!
   850 !Structure class methodsFor:'documentation'!
   825 
   851 
   826 version
   852 version
   827     ^ '$Header: /cvs/stx/stx/libcomp/Structure.st,v 1.1 1996-05-24 15:00:36 cg Exp $'
   853     ^ '$Header: /cvs/stx/stx/libcomp/Structure.st,v 1.2 1996-05-24 15:02:32 cg Exp $'
   828 ! !
   854 ! !
   829 
   855 
   830 Structure initialize!
   856 Structure initialize!