OrderedCollectionInspectorView.st
changeset 16817 2a7b77006cbf
parent 11729 28a9e5cf7f79
child 16828 3be43a489ae3
child 17873 55caf185e54f
equal deleted inserted replaced
16816:ce7ac654bf0f 16817:2a7b77006cbf
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 "{ Package: 'stx:libtool' }"
    12 "{ Package: 'stx:libtool' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 InspectorView subclass:#OrderedCollectionInspectorView
    16 InspectorView subclass:#OrderedCollectionInspectorView
    15 	instanceVariableNames:''
    17 	instanceVariableNames:''
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
   123 ! !
   125 ! !
   124 
   126 
   125 !OrderedCollectionInspectorView methodsFor:'private'!
   127 !OrderedCollectionInspectorView methodsFor:'private'!
   126 
   128 
   127 baseInspectedObjectClass
   129 baseInspectedObjectClass
   128     (inspectedObject class inheritsFrom:OrderedCollection) ifFalse:[
       
   129         ^ Object
       
   130     ].
       
   131     ^ OrderedCollection
   130     ^ OrderedCollection
   132 !
   131 !
   133 
   132 
   134 defaultLabel
   133 defaultLabel
   135     ^ 'Contents'
   134     ^ 'Contents'
   190 ! !
   189 ! !
   191 
   190 
   192 !OrderedCollectionInspectorView class methodsFor:'documentation'!
   191 !OrderedCollectionInspectorView class methodsFor:'documentation'!
   193 
   192 
   194 version
   193 version
   195     ^ '$Header: /cvs/stx/stx/libtool/OrderedCollectionInspectorView.st,v 1.48 2012-08-06 07:02:02 cg Exp $'
   194     ^ '$Header$'
   196 !
   195 !
   197 
   196 
   198 version_CVS
   197 version_CVS
   199     ^ '$Header: /cvs/stx/stx/libtool/OrderedCollectionInspectorView.st,v 1.48 2012-08-06 07:02:02 cg Exp $'
   198     ^ '$Header$'
   200 ! !
   199 ! !
       
   200