SequenceView.st
changeset 2150 3cee520c3f91
parent 2100 69c10efca8f4
child 2293 edeb8b9be073
equal deleted inserted replaced
2149:b2e64bada77c 2150:3cee520c3f91
       
     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 
     1 ScrollableView subclass:#SequenceView
    14 ScrollableView subclass:#SequenceView
     2 	instanceVariableNames:''
    15 	instanceVariableNames:''
     3 	classVariableNames:''
    16 	classVariableNames:''
     4 	poolDictionaries:''
    17 	poolDictionaries:''
     5 	category:'Views-Lists'
    18 	category:'Views-Lists'
     6 !
    19 !
     7 
    20 
     8 !SequenceView class methodsFor:'documentation'!
    21 !SequenceView class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 1997 by eXept Software AG
       
    26               All Rights Reserved
       
    27 
       
    28  This software is furnished under a license and may be used
       
    29  only in accordance with the terms of that license and with the
       
    30  inclusion of the above copyright notice.   This software may not
       
    31  be provided or otherwise made available to, or used by, any
       
    32  other person.  No title to or ownership of the software is
       
    33  hereby transferred.
       
    34 "
       
    35 
       
    36 !
     9 
    37 
    10 documentation
    38 documentation
    11 "
    39 "
    12     implements a SelectionInListView with configurable scrollbars
    40     implements a SelectionInListView with configurable scrollbars
    13 
    41 
    75 ! !
   103 ! !
    76 
   104 
    77 !SequenceView class methodsFor:'documentation'!
   105 !SequenceView class methodsFor:'documentation'!
    78 
   106 
    79 version
   107 version
    80     ^ '$Header: /cvs/stx/stx/libwidg/SequenceView.st,v 1.6 2000-01-17 11:17:53 cg Exp $'
   108     ^ '$Header: /cvs/stx/stx/libwidg/SequenceView.st,v 1.7 2000-02-18 14:36:17 cg Exp $'
    81 ! !
   109 ! !