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