method category rename
authorClaus Gittinger <cg@exept.de>
Wed, 07 May 2003 16:06:30 +0200
changeset 7257 b9f0fb923c72
parent 7256 208e68f187ca
child 7258 9ccdbee7d1ad
method category rename
Block.st
Character.st
Context.st
ExecutableFunction.st
ExternalBytes.st
ExternalFunction.st
Message.st
ObjectCoder.st
Process.st
--- a/Block.st	Wed May 07 14:27:33 2003 +0200
+++ b/Block.st	Wed May 07 16:06:30 2003 +0200
@@ -1575,7 +1575,7 @@
 "/
 ! !
 
-!Block methodsFor:'private accessing'!
+!Block methodsFor:'private-accessing'!
 
 byteCode:bCode numArgs:numArgs numVars:numVars  numStack:numStack sourcePosition:srcPos initialPC:iPC literals:lits
     "set all relevant internals.
@@ -1961,7 +1961,7 @@
 !Block class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Block.st,v 1.130 2003-04-01 14:54:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Block.st,v 1.131 2003-05-07 14:05:51 cg Exp $'
 ! !
 
 Block initialize!
--- a/Character.st	Wed May 07 14:27:33 2003 +0200
+++ b/Character.st	Wed May 07 16:06:30 2003 +0200
@@ -1116,7 +1116,7 @@
     "Modified: / 20.1.1998 / 14:10:46 / stefan"
 ! !
 
-!Character methodsFor:'private accessing'!
+!Character methodsFor:'private-accessing'!
 
 setAsciiValue:anInteger
     "very private - set the ascii value. 
@@ -1408,5 +1408,5 @@
 !Character class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Character.st,v 1.81 2003-05-02 17:51:50 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Character.st,v 1.82 2003-05-07 14:06:09 cg Exp $'
 ! !
--- a/Context.st	Wed May 07 14:27:33 2003 +0200
+++ b/Context.st	Wed May 07 16:06:30 2003 +0200
@@ -1543,7 +1543,7 @@
     "Modified: / 16.11.2001 / 16:04:21 / cg"
 ! !
 
-!Context methodsFor:'private accessing'!
+!Context methodsFor:'private-accessing'!
 
 markForHandle
     "set the mark for exception handle flag in the receiver.
@@ -2006,6 +2006,7 @@
 !Context class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Context.st,v 1.115 2002-07-17 21:58:14 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Context.st,v 1.116 2003-05-07 14:06:15 cg Exp $'
 ! !
+
 Context initialize!
--- a/ExecutableFunction.st	Wed May 07 14:27:33 2003 +0200
+++ b/ExecutableFunction.st	Wed May 07 16:06:30 2003 +0200
@@ -204,7 +204,7 @@
 
 ! !
 
-!ExecutableFunction methodsFor:'private accessing'!
+!ExecutableFunction methodsFor:'private-accessing'!
 
 code:anAddress
     "set the code field - DANGER ALERT. 
@@ -437,7 +437,7 @@
 !ExecutableFunction class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExecutableFunction.st,v 1.48 2003-03-31 17:53:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExecutableFunction.st,v 1.49 2003-05-07 14:05:59 cg Exp $'
 ! !
 
 ExecutableFunction initialize!
--- a/ExternalBytes.st	Wed May 07 14:27:33 2003 +0200
+++ b/ExternalBytes.st	Wed May 07 16:06:30 2003 +0200
@@ -1080,7 +1080,7 @@
     "Modified: / 24.2.2000 / 19:02:19 / cg"
 ! !
 
-!ExternalBytes methodsFor:'private accessing'!
+!ExternalBytes methodsFor:'private-accessing'!
 
 setAddress:aNumber size:sz 
     "set the start address and size"
@@ -1105,7 +1105,7 @@
     ^ self error:'cannot change address'
 ! !
 
-!ExternalBytes methodsFor:'private allocation'!
+!ExternalBytes methodsFor:'private-allocation'!
 
 allocateBytes:numberOfBytes
     "allocate (malloc) numberOfBytes.
@@ -1233,7 +1233,7 @@
 !ExternalBytes class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExternalBytes.st,v 1.52 2003-04-10 23:08:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExternalBytes.st,v 1.53 2003-05-07 14:06:30 cg Exp $'
 ! !
 
 ExternalBytes initialize!
--- a/ExternalFunction.st	Wed May 07 14:27:33 2003 +0200
+++ b/ExternalFunction.st	Wed May 07 16:06:30 2003 +0200
@@ -10,6 +10,8 @@
  hereby transferred.
 "
 
+"{ Package: 'stx:libbasic' }"
+
 ExecutableFunction subclass:#ExternalFunction
 	instanceVariableNames:'name moduleHandle'
 	classVariableNames:'InvalidCustomFunctionSignal'
@@ -776,7 +778,7 @@
     "Modified: 12.7.1996 / 23:31:49 / cg"
 ! !
 
-!ExternalFunction methodsFor:'private loader access'!
+!ExternalFunction methodsFor:'private-loader access'!
 
 setName:aString moduleHandle:aHandle
     "set the name & moduleHandle.
@@ -789,6 +791,7 @@
 !ExternalFunction class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExternalFunction.st,v 1.17 2000-01-10 13:37:09 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExternalFunction.st,v 1.18 2003-05-07 14:06:17 cg Exp $'
 ! !
+
 ExternalFunction initialize!
--- a/Message.st	Wed May 07 14:27:33 2003 +0200
+++ b/Message.st	Wed May 07 16:06:30 2003 +0200
@@ -178,7 +178,7 @@
     selector printOn:aStream
 ! !
 
-!Message methodsFor:'private accessing'!
+!Message methodsFor:'private-accessing'!
 
 setSelector:aSymbol
     selector := aSymbol.
@@ -209,5 +209,5 @@
 !Message class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Message.st,v 1.26 2002-12-10 15:45:18 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Message.st,v 1.27 2003-05-07 14:05:53 cg Exp $'
 ! !
--- a/ObjectCoder.st	Wed May 07 14:27:33 2003 +0200
+++ b/ObjectCoder.st	Wed May 07 16:06:30 2003 +0200
@@ -208,7 +208,7 @@
 
 ! !
 
-!ObjectCoder methodsFor:'private - accessing'!
+!ObjectCoder methodsFor:'private-accessing'!
 
 stream:aStream
     stream := aStream.
@@ -221,5 +221,5 @@
 !ObjectCoder class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ObjectCoder.st,v 1.10 2002-11-26 10:54:33 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ObjectCoder.st,v 1.11 2003-05-07 14:06:01 cg Exp $'
 ! !
--- a/Process.st	Wed May 07 14:27:33 2003 +0200
+++ b/Process.st	Wed May 07 16:06:30 2003 +0200
@@ -1150,7 +1150,7 @@
     "Modified: 25.1.1997 / 01:28:54 / cg"
 ! !
 
-!Process methodsFor:'private scheduler access'!
+!Process methodsFor:'private-scheduler access'!
 
 setId:idNumber state:stateSymbol
     "set id and state - not for public use"
@@ -1942,7 +1942,7 @@
 !Process class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Process.st,v 1.134 2003-01-07 09:49:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Process.st,v 1.135 2003-05-07 14:06:23 cg Exp $'
 ! !
 
 Process initialize!