For example, let's say I am adding a set of objects I created, called myClass (which contains a string) to myList and then I wish to use the list and pass it to a GUI list. Is there a way to populate that GUI list only with the value of that string in myClass?

link|improve this question
feedback

2 Answers

up vote 9 down vote accepted

Every object should respond to printString message with some meaningful string presentation of itself. You can write your own #printString for your object and use it.

Even better for your case could be implementation of asString conversion method, which converts your object to a string.

link|improve this answer
So, basically, as long as I defined my own printString method in my class, the GUI list will call that when passing a list of my objects? – laluser Mar 23 '11 at 21:49
This depends on the implementation of GUI framework. Which Smalltalk dialect you use? – Janko Mivšek Mar 23 '11 at 22:50
I am using VisualWorks 7.7 – laluser Mar 23 '11 at 23:00
In VisualWorks displayString is the way to define string representation of an object for GUIs, while printString is for debugger and inspector. – Boris Berkgaut May 10 '11 at 16:44
feedback

I believe the methods you are looking for are printString and/or displayString.

link|improve this answer
So, basically, as long as I defined my own printString method in my class, the GUI list will call that when passing a list of my objects? – laluser Mar 23 '11 at 22:12
2  
you want to override self printOn: aStream in your class. printString will call that. – Randal Schwartz Mar 23 '11 at 23:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.