diff -r c28bc21f4bbe -r a44d7951711d Tools__SendersBrowslet.st --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Tools__SendersBrowslet.st Fri Jul 01 15:11:15 2011 +0200 @@ -0,0 +1,65 @@ +" + 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 " +! + +label + "superclass Browslet class says that I am responsible to implement this method" + + ^ 'Senders' + + "Modified: / 04-10-2010 / 22:57:55 / Jan Vrany " +! ! + +!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 §' +! !