Tools__SendersBrowslet.st
author Claus Gittinger <cg@exept.de>
Fri, 01 Jul 2011 15:11:15 +0200
changeset 9964 a44d7951711d
child 10045 bb79b3ab14d1
permissions -rw-r--r--
initial checkin

"
 COPYRIGHT (c) 2006 by eXept Software AG
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:libtool' }"

"{ NameSpace: Tools }"

Browslet subclass:#SendersBrowslet
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Interface-Browsers-Browslets'
!

!SendersBrowslet class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2006 by eXept Software AG
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
! !

!SendersBrowslet class methodsFor:'accessing'!

description
    "superclass Browslet class says that I am responsible to implement this method"

    ^ 'Shows a list of senders of currently selected method'

    "Modified: / 04-10-2010 / 22:58:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

label
    "superclass Browslet class says that I am responsible to implement this method"

    ^ 'Senders'

    "Modified: / 04-10-2010 / 22:57:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!SendersBrowslet class methodsFor:'documentation'!

version_CVS
    ^ '$Header: /cvs/stx/stx/libtool/Tools__SendersBrowslet.st,v 1.1 2011-07-01 13:11:15 cg Exp $'
!

version_SVN
    ^ '§Id: Tools__SendersBrowslet.st 7637 2010-10-04 21:44:44Z vranyj1 §'
! !