-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added inspector extensions for RPackage
- Loading branch information
1 parent
296db44
commit 87e6d83
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Extension { #name : #RPackage } | ||
|
||
{ #category : #'*NewTools-Inspector-Extensions' } | ||
RPackage >> baselineInspector [ | ||
|
||
<inspectorPresentationOrder: 2 title: 'Belongs to Baselines'> | ||
| items | | ||
items := BaselineOf allSubclasses select: [ :e | e allPackageNames includes: self name ]. | ||
^ SpListPresenter new | ||
items: items; | ||
yourself | ||
] | ||
|
||
{ #category : #'*NewTools-Inspector-Extensions' } | ||
RPackage >> overwiew [ | ||
|
||
<inspectorPresentationOrder: 1 title: 'Overwiew'> | ||
| items | | ||
items :={ 'Classes' -> self classes . 'Defined classes' -> self definedClasses . 'Methods' -> self methods }. | ||
items := items collect: [ :e | StInspectorAssociationNode hostObject: e ]. | ||
^ SpTablePresenter new | ||
alternateRowsColor; | ||
items: items; | ||
addColumn: (SpStringTableColumn | ||
title: 'Title' | ||
evaluated: [ :e | e key ] ); | ||
addColumn: (SpStringTableColumn | ||
title: 'Value' | ||
evaluated: [ :e | e value size ] ); | ||
yourself | ||
] |