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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9964
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
	      All Rights Reserved
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ NameSpace: Tools }"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
Browslet subclass:#SendersBrowslet
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Interface-Browsers-Browslets'
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!SendersBrowslet class methodsFor:'documentation'!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
copyright
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
 COPYRIGHT (c) 2006 by eXept Software AG
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
	      All Rights Reserved
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 This software is furnished under a license and may be used
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 only in accordance with the terms of that license and with the
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 be provided or otherwise made available to, or used by, any
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 other person.  No title to or ownership of the software is
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 hereby transferred.
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
! !
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!SendersBrowslet class methodsFor:'accessing'!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
description
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    "superclass Browslet class says that I am responsible to implement this method"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    ^ 'Shows a list of senders of currently selected method'
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    "Modified: / 04-10-2010 / 22:58:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
label
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
    "superclass Browslet class says that I am responsible to implement this method"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
    ^ 'Senders'
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    "Modified: / 04-10-2010 / 22:57:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
! !
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
!SendersBrowslet class methodsFor:'documentation'!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
version_CVS
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    ^ '$Header: /cvs/stx/stx/libtool/Tools__SendersBrowslet.st,v 1.1 2011-07-01 13:11:15 cg Exp $'
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
version_SVN
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
    ^ '§Id: Tools__SendersBrowslet.st 7637 2010-10-04 21:44:44Z vranyj1 §'
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
! !