ClassOtherChange.st
author Claus Gittinger <cg@exept.de>
Sat, 28 Jun 2003 21:01:46 +0200
changeset 1305 3aa4dc506e56
parent 1298 3fc29a9e5554
child 1986 db1ba4f9e43e
permissions -rw-r--r--
*** empty log message ***

"{ Package: 'stx:libbasic3' }"

ClassChange subclass:#ClassOtherChange
	instanceVariableNames:'type objectType'
	classVariableNames:''
	poolDictionaries:''
	category:'System-Changes'
!


!ClassOtherChange methodsFor:'accessing'!

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

    ^ objectType
!

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

    objectType := something.
!

source
    type == #initialize ifTrue:[
        ^ self className , ' initialize'.
    ].
    self halt.
!

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

    ^ type
!

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

    type := something.
! !

!ClassOtherChange class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic3/ClassOtherChange.st,v 1.3 2003-06-28 19:01:46 cg Exp $'
! !