Tools_ClassCategoryList.st
changeset 11907 6aa533944c59
parent 11900 4d1f5bd0a4df
child 11917 4abec96d769d
equal deleted inserted replaced
11906:2d6cd1623d50 11907:6aa533944c59
   759             item := item , ((' (%1)' bindWith:(categoriesBag occurrencesOf:cat)) 
   759             item := item , ((' (%1)' bindWith:(categoriesBag occurrencesOf:cat)) 
   760                                 colorizeAllWith:pseudoEntryColor).
   760                                 colorizeAllWith:pseudoEntryColor).
   761             item        
   761             item        
   762         ].
   762         ].
   763 
   763 
       
   764     numUndocumented > 0 ifTrue:[
       
   765         rawCategoryList add:self class nameListEntryForUndocumented.
       
   766         categories add:((self class nameListEntryForUndocumentedWithCount bindWith:numUndocumented) allItalic colorizeAllWith:pseudoEntryColor).
       
   767     ].
   764     numUnloaded > 0 ifTrue:[
   768     numUnloaded > 0 ifTrue:[
   765         rawCategoryList addFirst:self class nameListEntryForUnloaded.
   769         rawCategoryList add:self class nameListEntryForUnloaded.
   766         categories addFirst:((self class nameListEntryForUnloadedWithCount bindWith:numUnloaded) allItalic colorizeAllWith:pseudoEntryColor).
   770         categories add:((self class nameListEntryForUnloadedWithCount bindWith:numUnloaded) allItalic colorizeAllWith:pseudoEntryColor).
   767     ].
       
   768     numUndocumented > 0 ifTrue:[
       
   769         rawCategoryList addFirst:self class nameListEntryForUndocumented.
       
   770         categories addFirst:((self class nameListEntryForUndocumentedWithCount bindWith:numUndocumented) allItalic colorizeAllWith:pseudoEntryColor).
       
   771     ].
   771     ].
   772     numClassesInChangeSet := ChangeSet current changedClasses size.
   772     numClassesInChangeSet := ChangeSet current changedClasses size.
   773     numClassesInChangeSet > 0 ifTrue:[
   773     numClassesInChangeSet > 0 ifTrue:[
   774         rawCategoryList addFirst:self class nameListEntryForChanged.
   774         rawCategoryList addFirst:self class nameListEntryForChanged.
   775         categories addFirst:((self class nameListEntryForChangedWithCount bindWith:numClassesInChangeSet) allItalic colorizeAllWith:pseudoEntryColor).
   775         categories addFirst:((self class nameListEntryForChangedWithCount bindWith:numClassesInChangeSet) allItalic colorizeAllWith:pseudoEntryColor).
   950 ! !
   950 ! !
   951 
   951 
   952 !ClassCategoryList class methodsFor:'documentation'!
   952 !ClassCategoryList class methodsFor:'documentation'!
   953 
   953 
   954 version
   954 version
   955     ^ '$Header: /cvs/stx/stx/libtool/Tools_ClassCategoryList.st,v 1.35 2012-10-23 08:44:29 cg Exp $'
   955     ^ '$Header: /cvs/stx/stx/libtool/Tools_ClassCategoryList.st,v 1.36 2012-10-23 13:49:11 cg Exp $'
   956 !
   956 !
   957 
   957 
   958 version_CVS
   958 version_CVS
   959     ^ '$Header: /cvs/stx/stx/libtool/Tools_ClassCategoryList.st,v 1.35 2012-10-23 08:44:29 cg Exp $'
   959     ^ '$Header: /cvs/stx/stx/libtool/Tools_ClassCategoryList.st,v 1.36 2012-10-23 13:49:11 cg Exp $'
   960 ! !
   960 ! !