Login  Register

Browse list of methods

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options Options
Embed post
Permalink
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Browse list of methods

Mark Rizun
194 posts
Hi guys,

If I have list of methods, how can I open a browser containing only this methods?

Best,
Mark
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Browse list of methods

camille teruel
281 posts

On 24 juil. 2014, at 16:02, Mark Rizun <[hidden email]> 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.
>


Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Browse list of methods

Mark Rizun
194 posts
Thanks. That will do:)


2014-07-24 16:07 GMT+02:00 Camille Teruel <[hidden email]>:

On 24 juil. 2014, at 16:02, Mark Rizun <[hidden email]> 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.
>