ClassPrimitiveFunctionsChange.st
changeset 101 9a1c22e807e0
child 103 487c1447b3d8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ClassPrimitiveFunctionsChange.st	Sun Dec 03 18:25:09 1995 +0100
@@ -0,0 +1,57 @@
+"
+ COPYRIGHT (c) 1995 by Claus Gittinger
+	      All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+ClassChange subclass:#ClassPrimitiveFunctionsChange
+	 instanceVariableNames:''
+	 classVariableNames:''
+	 poolDictionaries:''
+	 category:'System-Changes'
+!
+
+!ClassPrimitiveFunctionsChange class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1995 by Claus Gittinger
+	      All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
+documentation
+"
+    instances represent a classes primitive function-changes. 
+    They are typically held in a ChangeSet.
+"
+! !
+
+!ClassPrimitiveFunctionsChange methodsFor:'accessing'!
+
+class:aClass 
+    className := aClass name.
+    source := aClass primitiveFunctionsString
+
+    "Created: 3.12.1995 / 14:02:40 / cg"
+    "Modified: 3.12.1995 / 14:06:33 / cg"
+! !
+
+!ClassPrimitiveFunctionsChange class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic3/ClassPrimitiveFunctionsChange.st,v 1.1 1995-12-03 17:25:08 cg Exp $'
+! !