InterestConverter.st
changeset 6056 5406d407a9bb
parent 5272 1dad283c5256
child 7347 1c4e0be2c4f0
--- a/InterestConverter.st	Wed Sep 26 21:39:33 2001 +0200
+++ b/InterestConverter.st	Thu Sep 27 19:53:17 2001 +0200
@@ -11,6 +11,8 @@
 "
 
 
+"{ Package: 'stx:libbasic' }"
+
 Object subclass:#InterestConverter
 	instanceVariableNames:'destination selector aspect'
 	classVariableNames:''
@@ -190,8 +192,14 @@
     "Modified: 8.3.1996 / 22:41:53 / cg"
 ! !
 
+!InterestConverter methodsFor:'printing'!
+
+displayString
+    ^ self className , '(sending ' , selector storeString , ' to ' , destination printString , ')'
+! !
+
 !InterestConverter class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/InterestConverter.st,v 1.9 2000-02-18 14:34:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/InterestConverter.st,v 1.10 2001-09-27 17:53:17 cg Exp $'
 ! !