ClassPrimitiveFunctionsChange.st
changeset 101 9a1c22e807e0
child 103 487c1447b3d8
equal deleted inserted replaced
100:d09e51d14901 101:9a1c22e807e0
       
     1 "
       
     2  COPYRIGHT (c) 1995 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 
       
    13 ClassChange subclass:#ClassPrimitiveFunctionsChange
       
    14 	 instanceVariableNames:''
       
    15 	 classVariableNames:''
       
    16 	 poolDictionaries:''
       
    17 	 category:'System-Changes'
       
    18 !
       
    19 
       
    20 !ClassPrimitiveFunctionsChange class methodsFor:'documentation'!
       
    21 
       
    22 copyright
       
    23 "
       
    24  COPYRIGHT (c) 1995 by Claus Gittinger
       
    25 	      All Rights Reserved
       
    26 
       
    27  This software is furnished under a license and may be used
       
    28  only in accordance with the terms of that license and with the
       
    29  inclusion of the above copyright notice.   This software may not
       
    30  be provided or otherwise made available to, or used by, any
       
    31  other person.  No title to or ownership of the software is
       
    32  hereby transferred.
       
    33 "
       
    34 !
       
    35 
       
    36 documentation
       
    37 "
       
    38     instances represent a classes primitive function-changes. 
       
    39     They are typically held in a ChangeSet.
       
    40 "
       
    41 ! !
       
    42 
       
    43 !ClassPrimitiveFunctionsChange methodsFor:'accessing'!
       
    44 
       
    45 class:aClass 
       
    46     className := aClass name.
       
    47     source := aClass primitiveFunctionsString
       
    48 
       
    49     "Created: 3.12.1995 / 14:02:40 / cg"
       
    50     "Modified: 3.12.1995 / 14:06:33 / cg"
       
    51 ! !
       
    52 
       
    53 !ClassPrimitiveFunctionsChange class methodsFor:'documentation'!
       
    54 
       
    55 version
       
    56     ^ '$Header: /cvs/stx/stx/libbasic3/ClassPrimitiveFunctionsChange.st,v 1.1 1995-12-03 17:25:08 cg Exp $'
       
    57 ! !