InspectorView.st
changeset 809 6f127dd5e578
parent 88 d6dccf1ad344
child 810 032e13b1bfda
equal deleted inserted replaced
808:4e2ab5e77344 809:6f127dd5e578
       
     1 "
       
     2  COPYRIGHT (c) 1997 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
       
    13 
       
    14 
     1 "{ NameSpace: NewInspector }"
    15 "{ NameSpace: NewInspector }"
     2 
    16 
     3 VariableVerticalPanel subclass:#InspectorView
    17 VariableVerticalPanel subclass:#InspectorView
     4 	instanceVariableNames:'inspectorView userSpace workSpace inspectedObject'
    18 	instanceVariableNames:'inspectorView userSpace workSpace inspectedObject'
     5 	classVariableNames:''
    19 	classVariableNames:''
     6 	poolDictionaries:''
    20 	poolDictionaries:''
     7 	category:'Inspector'
    21 	category:'Inspector'
     8 !
    22 !
     9 
    23 
    10 !InspectorView class methodsFor:'documentation'!
    24 !InspectorView class methodsFor:'documentation'!
       
    25 
       
    26 copyright
       
    27 "
       
    28  COPYRIGHT (c) 1997 by eXept Software AG
       
    29               All Rights Reserved
       
    30 
       
    31  This software is furnished under a license and may be used
       
    32  only in accordance with the terms of that license and with the
       
    33  inclusion of the above copyright notice.   This software may not
       
    34  be provided or otherwise made available to, or used by, any
       
    35  other person.  No title to or ownership of the software is
       
    36  hereby transferred.
       
    37 "
       
    38 
       
    39 
       
    40 !
       
    41 
       
    42 documentation
       
    43 "
       
    44     a new (multipane) inspector;
       
    45     open with:
       
    46         NewInspector::InspectorView inspect:someObject
       
    47 
       
    48     install as standard inspector:
       
    49         Smalltalk at:#Inspector put:(NewInspector::InspectorView)
       
    50 
       
    51     [open with:]
       
    52         NewInspector::InspectorView 
       
    53                 inspect:(Array with:#hello with:'hello' with:#(1 2 3) asSortedCollection with:Display)
       
    54 
       
    55     [author:]
       
    56         Claus Atzkern
       
    57 "
       
    58 !
    11 
    59 
    12 examples
    60 examples
    13 
    61 
    14 "
    62 "
    15     open an inspector on an array
    63     open an inspector on an array