InvalidChange.st
author Claus Gittinger <cg@exept.de>
Wed, 06 Mar 2013 18:09:34 +0100
changeset 3114 a9f42d2b0928
parent 2998 9a38e9302dd6
child 3158 f8c56a311307
child 4072 de6c442df73b
permissions -rw-r--r--
added: #copyright

"
 COPYRIGHT (c) 2012 by eXept Software AG
              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.
"
"{ Package: 'stx:libbasic3' }"

Change subclass:#InvalidChange
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'System-Changes'
!

!InvalidChange class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2012 by eXept Software AG
              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
"
    I represent unhandled change chunks (in a changeFile)
"
! !

!InvalidChange methodsFor:'applying'!

apply
    ^ self error:'Invalid change, cannot apply'

    "Modified: / 24-01-2012 / 16:50:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!InvalidChange methodsFor:'printing & storing'!

printOn:aStream
    "append a printed representation if the receiver to the argument, aStream"

    aStream nextPutAll: 'Invalid change'

    "Modified: / 24-01-2012 / 16:51:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!InvalidChange class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic3/InvalidChange.st,v 1.3 2013-03-06 17:09:34 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libbasic3/InvalidChange.st,v 1.3 2013-03-06 17:09:34 cg Exp $'
! !