MCClassDefinition.st
changeset 848 b86a6f467667
parent 766 94bc6e95d8b1
child 876 14ab9847bdda
--- a/MCClassDefinition.st	Wed May 29 13:47:31 2013 +0200
+++ b/MCClassDefinition.st	Wed May 29 13:47:50 2013 +0200
@@ -134,6 +134,10 @@
 	^ category
 !
 
+category:something
+    category := something.
+!
+
 classInstVarNames
 	^ self selectVariables: #isClassInstanceVariable
 !
@@ -211,6 +215,10 @@
 	^ superclassName
 !
 
+superclassName:something
+    superclassName := something.
+!
+
 traitComposition
 	^traitComposition
 !
@@ -616,14 +624,14 @@
 !MCClassDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCClassDefinition.st,v 1.11 2013-03-25 14:33:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCClassDefinition.st,v 1.12 2013-05-29 11:47:50 vrany Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCClassDefinition.st,v 1.11 2013-03-25 14:33:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCClassDefinition.st,v 1.12 2013-05-29 11:47:50 vrany Exp $'
 !
 
 version_SVN
-    ^ '§Id: MCClassDefinition.st 24 2010-11-09 14:00:17Z vranyj1 §'
+    ^ '$Id: MCClassDefinition.st,v 1.12 2013-05-29 11:47:50 vrany Exp $'
 ! !