Hi guys, If I have list of methods, how can I open a browser containing only this methods? Best, Mark -- View this message in context: http://forum.world.st/Browse-list-of-methods-tp4769871.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
On 24 juil. 2014, at 16:02, Mark Rizun <mrizun@gmail.com> wrote:
Hi guys,
If I have list of methods, how can I open a browser containing only this methods?
There is MessageBrowser. Look at the class side for the creating instances For example you can do: (MessageBrowser on: { Object>>#copy } named: 'My Methods' autoSelect: #copy) open Camille
Best, Mark
-- View this message in context: http://forum.world.st/Browse-list-of-methods-tp4769871.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
Thanks. That will do:) 2014-07-24 16:07 GMT+02:00 Camille Teruel <camille.teruel@gmail.com>:
On 24 juil. 2014, at 16:02, Mark Rizun <mrizun@gmail.com> wrote:
Hi guys,
If I have list of methods, how can I open a browser containing only this methods?
There is MessageBrowser. Look at the class side for the creating instances For example you can do:
(MessageBrowser on: { Object>>#copy } named: 'My Methods' autoSelect: #copy) open
Camille
Best, Mark
-- View this message in context: http://forum.world.st/Browse-list-of-methods-tp4769871.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
participants (2)
-
Camille Teruel -
Mark Rizun