.
authorclaus
Sun, 02 Apr 1995 13:08:37 +0200
changeset 25 e672a78c4cd3
parent 24 10e1150b1f4b
child 26 52729053f9c4
.
MethodCategoryChange.st
MethodChange.st
MethodChg.st
MthdCatChg.st
--- a/MethodCategoryChange.st	Sat Mar 18 06:08:15 1995 +0100
+++ b/MethodCategoryChange.st	Sun Apr 02 13:08:37 1995 +0200
@@ -1,4 +1,14 @@
-'From Smalltalk/X, Version:2.10.4 on 27-dec-1994 at 11:26:20 am'!
+"
+ COPYRIGHT (c) 1993 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.
+"
 
 MethodChange subclass:#MethodCategoryChange
 	 instanceVariableNames:'category'
@@ -7,6 +17,28 @@
 	 category:'System-Changes'
 !
 
+!MethodCategoryChange class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1993 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.
+"
+!
+
+version
+"
+$Header: /cvs/stx/stx/libbasic3/MethodCategoryChange.st,v 1.2 1995-04-02 11:08:37 claus Exp $
+"
+! !
+
 !MethodCategoryChange class methodsFor:'instance creation'!
 
 class:cls selector:sel category:cat 
--- a/MethodChange.st	Sat Mar 18 06:08:15 1995 +0100
+++ b/MethodChange.st	Sun Apr 02 13:08:37 1995 +0200
@@ -1,6 +1,6 @@
 "
  COPYRIGHT (c) 1993 by Claus Gittinger
-               All Rights Reserved
+	       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
@@ -11,18 +11,40 @@
 "
 
 ClassChange subclass:#MethodChange
-         instanceVariableNames:'selector'
-         classVariableNames:''
-         poolDictionaries:''
-         category:'System-Changes'
+	 instanceVariableNames:'selector'
+	 classVariableNames:''
+	 poolDictionaries:''
+	 category:'System-Changes'
 !
 
 MethodChange comment:'
 COPYRIGHT (c) 1993 by Claus Gittinger
-              All Rights Reserved
+	      All Rights Reserved
+
+$Header: /cvs/stx/stx/libbasic3/MethodChange.st,v 1.6 1995-04-02 11:08:32 claus Exp $
+'!
+
+!MethodChange class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1993 by Claus Gittinger
+	       All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic3/MethodChange.st,v 1.5 1994-08-05 01:06:58 claus Exp $
-'!
+ 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.
+"
+!
+
+version
+"
+$Header: /cvs/stx/stx/libbasic3/MethodChange.st,v 1.6 1995-04-02 11:08:32 claus Exp $
+"
+! !
 
 !MethodChange class methodsFor:'instance creation'!
 
@@ -42,6 +64,6 @@
 
 printOn:aStream
     aStream nextPutAll:className; 
-                 space; 
-            nextPutAll:selector 
+		 space; 
+	    nextPutAll:selector 
 ! !
--- a/MethodChg.st	Sat Mar 18 06:08:15 1995 +0100
+++ b/MethodChg.st	Sun Apr 02 13:08:37 1995 +0200
@@ -1,6 +1,6 @@
 "
  COPYRIGHT (c) 1993 by Claus Gittinger
-               All Rights Reserved
+	       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
@@ -11,18 +11,40 @@
 "
 
 ClassChange subclass:#MethodChange
-         instanceVariableNames:'selector'
-         classVariableNames:''
-         poolDictionaries:''
-         category:'System-Changes'
+	 instanceVariableNames:'selector'
+	 classVariableNames:''
+	 poolDictionaries:''
+	 category:'System-Changes'
 !
 
 MethodChange comment:'
 COPYRIGHT (c) 1993 by Claus Gittinger
-              All Rights Reserved
+	      All Rights Reserved
+
+$Header: /cvs/stx/stx/libbasic3/Attic/MethodChg.st,v 1.6 1995-04-02 11:08:32 claus Exp $
+'!
+
+!MethodChange class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1993 by Claus Gittinger
+	       All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic3/Attic/MethodChg.st,v 1.5 1994-08-05 01:06:58 claus Exp $
-'!
+ 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.
+"
+!
+
+version
+"
+$Header: /cvs/stx/stx/libbasic3/Attic/MethodChg.st,v 1.6 1995-04-02 11:08:32 claus Exp $
+"
+! !
 
 !MethodChange class methodsFor:'instance creation'!
 
@@ -42,6 +64,6 @@
 
 printOn:aStream
     aStream nextPutAll:className; 
-                 space; 
-            nextPutAll:selector 
+		 space; 
+	    nextPutAll:selector 
 ! !
--- a/MthdCatChg.st	Sat Mar 18 06:08:15 1995 +0100
+++ b/MthdCatChg.st	Sun Apr 02 13:08:37 1995 +0200
@@ -1,4 +1,14 @@
-'From Smalltalk/X, Version:2.10.4 on 27-dec-1994 at 11:26:20 am'!
+"
+ COPYRIGHT (c) 1993 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.
+"
 
 MethodChange subclass:#MethodCategoryChange
 	 instanceVariableNames:'category'
@@ -7,6 +17,28 @@
 	 category:'System-Changes'
 !
 
+!MethodCategoryChange class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1993 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.
+"
+!
+
+version
+"
+$Header: /cvs/stx/stx/libbasic3/Attic/MthdCatChg.st,v 1.2 1995-04-02 11:08:37 claus Exp $
+"
+! !
+
 !MethodCategoryChange class methodsFor:'instance creation'!
 
 class:cls selector:sel category:cat