ClassOtherChange.st
changeset 913 0000f1667243
child 1298 3fc29a9e5554
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ClassOtherChange.st	Tue Mar 21 13:48:54 2000 +0100
@@ -0,0 +1,35 @@
+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 $'
+! !