# HG changeset patch # User Claus Gittinger # Date 967716209 -7200 # Node ID e6e14f50d721763d9a5e3409b78d7a6d2b4c5a60 # Parent 109bc06e44384221a94be3cd2c48d8a451b80343 category change diff -r 109bc06e4438 -r e6e14f50d721 FixedPoint.st --- a/FixedPoint.st Thu Aug 31 00:01:45 2000 +0200 +++ b/FixedPoint.st Thu Aug 31 12:03:29 2000 +0200 @@ -12,6 +12,8 @@ added here as an example ... " +"{ Package: 'stx:libbasic' }" + Fraction subclass:#FixedPoint instanceVariableNames:'scale' classVariableNames:'' @@ -716,7 +718,7 @@ ! ! -!FixedPoint methodsFor:'printing'! +!FixedPoint methodsFor:'printing & storing'! printOn: aStream "append to the argument, aStream, a printed representation of the receiver. @@ -894,5 +896,5 @@ !FixedPoint class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/FixedPoint.st,v 1.10 1998-08-05 12:29:05 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/FixedPoint.st,v 1.11 2000-08-31 10:02:43 cg Exp $' ! ! diff -r 109bc06e4438 -r e6e14f50d721 GenericException.st --- a/GenericException.st Thu Aug 31 00:01:45 2000 +0200 +++ b/GenericException.st Thu Aug 31 12:03:29 2000 +0200 @@ -1581,7 +1581,7 @@ "Modified: 27.3.1997 / 16:46:51 / cg" ! ! -!GenericException methodsFor:'printing'! +!GenericException methodsFor:'printing & storing'! description "return the description string of the signal" @@ -1863,6 +1863,6 @@ !GenericException class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.36 2000-04-01 13:02:35 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.37 2000-08-31 10:02:45 cg Exp $' ! ! GenericException initialize! diff -r 109bc06e4438 -r e6e14f50d721 Geometric.st --- a/Geometric.st Thu Aug 31 00:01:45 2000 +0200 +++ b/Geometric.st Thu Aug 31 12:03:29 2000 +0200 @@ -10,6 +10,8 @@ hereby transferred. " +"{ Package: 'stx:libbasic' }" + Object subclass:#Geometric instanceVariableNames:'' classVariableNames:'Scale InverseScale' @@ -460,7 +462,7 @@ ^ false ! ! -!Geometric methodsFor:'transforming'! +!Geometric methodsFor:'transformations'! scaledBy:scaleAmount "return a copy of the receiver, which is scaled by the argument, @@ -483,6 +485,6 @@ !Geometric class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/Geometric.st,v 1.25 1999-07-08 16:14:30 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/Geometric.st,v 1.26 2000-08-31 10:02:48 cg Exp $' ! ! Geometric initialize! diff -r 109bc06e4438 -r e6e14f50d721 SemaphoreSet.st --- a/SemaphoreSet.st Thu Aug 31 00:01:45 2000 +0200 +++ b/SemaphoreSet.st Thu Aug 31 12:03:29 2000 +0200 @@ -11,6 +11,8 @@ " +"{ Package: 'stx:libbasic' }" + IdentitySet subclass:#SemaphoreSet instanceVariableNames:'' classVariableNames:'' @@ -167,7 +169,7 @@ " ! ! -!SemaphoreSet methodsFor:'wait'! +!SemaphoreSet methodsFor:'wait & signal'! wait "wait for any of the semaphores in the set to be signalled. @@ -279,5 +281,5 @@ !SemaphoreSet class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/SemaphoreSet.st,v 1.11 1997-08-20 16:39:12 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/SemaphoreSet.st,v 1.12 2000-08-31 10:03:26 cg Exp $' ! ! diff -r 109bc06e4438 -r e6e14f50d721 Signal.st --- a/Signal.st Thu Aug 31 00:01:45 2000 +0200 +++ b/Signal.st Thu Aug 31 12:03:29 2000 +0200 @@ -308,7 +308,7 @@ "Modified: 8.10.1997 / 11:57:13 / cg" ! ! -!Signal methodsFor:'printing'! +!Signal methodsFor:'printing & storing'! description "return the notifier string. @@ -776,5 +776,5 @@ !Signal class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/Signal.st,v 1.77 2000-08-11 17:39:18 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/Signal.st,v 1.78 2000-08-31 10:03:29 cg Exp $' ! !