InvalidChange.st
changeset 4072 de6c442df73b
parent 3114 a9f42d2b0928
child 4074 533d1c715e83
equal deleted inserted replaced
4071:444038524c29 4072:de6c442df73b
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 "{ Package: 'stx:libbasic3' }"
    12 "{ Package: 'stx:libbasic3' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 Change subclass:#InvalidChange
    16 Change subclass:#InvalidChange
    15 	instanceVariableNames:''
    17 	instanceVariableNames:''
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
    50 ! !
    52 ! !
    51 
    53 
    52 !InvalidChange methodsFor:'printing & storing'!
    54 !InvalidChange methodsFor:'printing & storing'!
    53 
    55 
    54 printOn:aStream
    56 printOn:aStream
    55     "append a printed representation if the receiver to the argument, aStream"
    57     "append a printed representation of the receiver to the argument, aStream"
    56 
    58 
    57     aStream nextPutAll: 'Invalid change'
    59     aStream nextPutAll: 'Invalid change'
    58 
    60 
    59     "Modified: / 24-01-2012 / 16:51:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    61     "Modified: / 24-01-2012 / 16:51:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    60 ! !
    62 ! !
    61 
    63 
    62 !InvalidChange class methodsFor:'documentation'!
    64 !InvalidChange class methodsFor:'documentation'!
    63 
    65 
    64 version
    66 version
    65     ^ '$Header: /cvs/stx/stx/libbasic3/InvalidChange.st,v 1.3 2013-03-06 17:09:34 cg Exp $'
    67     ^ '$Header$'
    66 !
    68 !
    67 
    69 
    68 version_CVS
    70 version_CVS
    69     ^ '$Header: /cvs/stx/stx/libbasic3/InvalidChange.st,v 1.3 2013-03-06 17:09:34 cg Exp $'
    71     ^ '$Header$'
    70 ! !
    72 ! !
    71 
    73