DirectoryContentsBrowser.st
changeset 5140 36c7da05d814
parent 5120 e4c15c9d82ba
child 5152 6c6716dd6642
equal deleted inserted replaced
5139:4cef12eebbb7 5140:36c7da05d814
       
     1 "
       
     2  COPYRIGHT (c) 2002 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 
     1 "{ Package: 'stx:libtool' }"
    13 "{ Package: 'stx:libtool' }"
     2 
    14 
     3 AbstractDirectoryBrowser subclass:#DirectoryContentsBrowser
    15 AbstractDirectoryBrowser subclass:#DirectoryContentsBrowser
     4 	instanceVariableNames:'modificationTime directory columnDescriptors iconIndex
    16 	instanceVariableNames:'modificationTime directory columnDescriptors iconIndex
     5 		fileDescriptionIndex iconExtent tableColumns previewIndex
    17 		fileDescriptionIndex iconExtent tableColumns previewIndex
    21 	poolDictionaries:''
    33 	poolDictionaries:''
    22 	privateIn:DirectoryContentsBrowser
    34 	privateIn:DirectoryContentsBrowser
    23 !
    35 !
    24 
    36 
    25 !DirectoryContentsBrowser class methodsFor:'documentation'!
    37 !DirectoryContentsBrowser class methodsFor:'documentation'!
       
    38 
       
    39 copyright
       
    40 "
       
    41  COPYRIGHT (c) 2002 by eXept Software AG
       
    42               All Rights Reserved
       
    43 
       
    44  This software is furnished under a license and may be used
       
    45  only in accordance with the terms of that license and with the
       
    46  inclusion of the above copyright notice.   This software may not
       
    47  be provided or otherwise made available to, or used by, any
       
    48  other person.  No title to or ownership of the software is
       
    49  hereby transferred.
       
    50 "
       
    51 !
    26 
    52 
    27 documentation
    53 documentation
    28 "
    54 "
    29     An application for displaying a directories' contents flat (or as a tree, alternatively).
    55     An application for displaying a directories' contents flat (or as a tree, alternatively).
    30     To be used as a building block in file browsers and fileSelection dialogs.
    56     To be used as a building block in file browsers and fileSelection dialogs.
  3014 ! !
  3040 ! !
  3015 
  3041 
  3016 !DirectoryContentsBrowser class methodsFor:'documentation'!
  3042 !DirectoryContentsBrowser class methodsFor:'documentation'!
  3017 
  3043 
  3018 version
  3044 version
  3019     ^ '$Header: /cvs/stx/stx/libtool/DirectoryContentsBrowser.st,v 1.126 2003-08-28 11:17:47 cg Exp $'
  3045     ^ '$Header: /cvs/stx/stx/libtool/DirectoryContentsBrowser.st,v 1.127 2003-08-29 19:27:57 cg Exp $'
  3020 ! !
  3046 ! !