ClassOtherChange.st
author Claus Gittinger <cg@exept.de>
Tue, 21 Mar 2000 13:48:54 +0100
changeset 913 0000f1667243
child 1298 3fc29a9e5554
permissions -rw-r--r--
initial checkin

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.!

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.1 2000-03-21 12:48:54 cg Exp $'
! !