MethodDefinitionChange.st
author Claus Gittinger <cg@exept.de>
Wed, 09 Apr 2003 12:50:33 +0200
changeset 1225 6e912daf6b1b
parent 912 beff816c6f5d
child 1321 ca932dd9f564
permissions -rw-r--r--
+isMethodDefinitionChange

"{ Package: 'stx:libbasic3' }"

MethodChange subclass:#MethodDefinitionChange
	instanceVariableNames:'attributes'
	classVariableNames:''
	poolDictionaries:''
	category:'System-Changes'
!


!MethodDefinitionChange methodsFor:'accessing'!

attributes
    "return the value of the instance variable 'attributes' (automatically generated)"

    ^ attributes
!

attributes:something
    "set the value of the instance variable 'attributes' (automatically generated)"

    attributes := something.
! !

!MethodDefinitionChange methodsFor:'queries'!

isMethodDefinitionChange
    ^ true
! !

!MethodDefinitionChange class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic3/MethodDefinitionChange.st,v 1.2 2003-04-09 10:50:33 cg Exp $'
! !