OrderedCollectionInspectorView.st
changeset 9352 9c1b758211d4
parent 7949 a2b4878cab10
child 9556 65d673dd5ef3
equal deleted inserted replaced
9351:99bd94741d5d 9352:9c1b758211d4
    54     |items m sel|
    54     |items m sel|
    55 
    55 
    56     items := #(
    56     items := #(
    57                   ('Inspect'                     doInspect              )
    57                   ('Inspect'                     doInspect              )
    58                   ('BasicInspect'                doBasicInspect         )
    58                   ('BasicInspect'                doBasicInspect         )
    59                   ('Inspect hierarchical'        doNewInspect           )
    59              ).
       
    60     NewInspector::NewInspectorView notNil ifTrue:[
       
    61         items := items , #(
       
    62                        ('Inspect Hierarchical'         #doNewInspect           )
       
    63                 ).
       
    64     ].
       
    65     items := items , #(
    60                   ('-')
    66                   ('-')
    61                   ('Owners'                      showOwners             )
    67                   ('Owners'                      showOwners             )
    62                   ('Ref chains'                  showReferences         )
    68                   ('Ref chains'                  showReferences         )
    63                   ('-')
    69                   ('-')
    64                   ('Browse'                      browse                 )
    70                   ('Browse'                      browse                 )
   191 ! !
   197 ! !
   192 
   198 
   193 !OrderedCollectionInspectorView class methodsFor:'documentation'!
   199 !OrderedCollectionInspectorView class methodsFor:'documentation'!
   194 
   200 
   195 version
   201 version
   196     ^ '$Header: /cvs/stx/stx/libtool/OrderedCollectionInspectorView.st,v 1.40 2008-01-27 16:05:57 cg Exp $'
   202     ^ '$Header: /cvs/stx/stx/libtool/OrderedCollectionInspectorView.st,v 1.41 2010-02-01 14:58:11 cg Exp $'
   197 ! !
   203 !
       
   204 
       
   205 version_CVS
       
   206     ^ '$Header: /cvs/stx/stx/libtool/OrderedCollectionInspectorView.st,v 1.41 2010-02-01 14:58:11 cg Exp $'
       
   207 ! !