Tools__ProfilerInfoItem.st
branchjv
changeset 12125 0c49a3b13e43
parent 12123 4bde08cebd48
child 12128 a7ff7d66ee85
equal deleted inserted replaced
12124:86df5844137f 12125:0c49a3b13e43
   113 !
   113 !
   114 
   114 
   115 methodLabel
   115 methodLabel
   116 
   116 
   117     ^(self isBlock ifTrue:['[] in '] ifFalse:['']), 
   117     ^(self isBlock ifTrue:['[] in '] ifFalse:['']), 
   118         self selector , 
   118         (self selector ? '???') , 
   119             (' [' , self methodClass nameWithoutPrefix , ']') asText allBold
   119             (' [' , (self methodClass isNil ifTrue:['???'] ifFalse:[self methodClass  nameWithoutPrefix]) , ']') asText allBold
   120 
   120 
   121     "Created: / 01-12-2007 / 20:56:29 / janfrog"
   121     "Created: / 01-12-2007 / 20:56:29 / janfrog"
   122     "Modified: / 01-12-2007 / 23:58:35 / janfrog"
   122     "Modified: / 01-12-2007 / 23:58:35 / janfrog"
       
   123     "Modified: / 18-10-2011 / 17:04:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   123 !
   124 !
   124 
   125 
   125 packageLabel
   126 packageLabel
   126 
   127 
   127     ^('[' , self method package , ']') asText allItalic
   128     ^('[' , self method package , ']') asText allItalic
   198 ! !
   199 ! !
   199 
   200 
   200 !ProfilerInfoItem class methodsFor:'documentation'!
   201 !ProfilerInfoItem class methodsFor:'documentation'!
   201 
   202 
   202 version_CVS
   203 version_CVS
   203     ^ '§Header: /cvs/stx/stx/libtool/Tools__ProfilerInfoItem.st,v 1.3 2011/08/02 07:36:00 cg Exp §'
   204     ^ '§Header: /cvs/stx/stx/libtool/Tools__ProfilerInfoItem.st,v 1.4 2011/10/18 15:29:55 vrany Exp §'
   204 !
   205 !
   205 
   206 
   206 version_SVN
   207 version_SVN
   207     ^ '$Id: Tools__ProfilerInfoItem.st 7486 2009-10-26 22:06:24Z vranyj1 $'
   208     ^ '$Id: Tools__ProfilerInfoItem.st 7486 2009-10-26 22:06:24Z vranyj1 $'
   208 ! !
   209 ! !