HierarchicalListView.st
changeset 1431 0cc20a8f2f7c
parent 1430 ae9e48cc7b9d
child 1508 9c54f2e53da1
--- a/HierarchicalListView.st	Tue Jul 06 15:40:09 1999 +0200
+++ b/HierarchicalListView.st	Tue Jul 06 18:51:00 1999 +0200
@@ -1,3 +1,16 @@
+"
+ COPYRIGHT (c) 1999 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+
 SelectionInListModelView subclass:#HierarchicalListView
 	instanceVariableNames:'imageInset imageWidth lineMask lineColor showRoot showLines
 		showLeftIndicators indicatorAction useDefaultIcons icons
@@ -9,10 +22,28 @@
 
 !HierarchicalListView class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1999 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+!
+
 documentation
 "
     This class implements a hierarchical list view based on a
-    hierachical list
+    hierachical list.
+    It provides functionality similar to SelectionInTreeView, but optimizes
+    redraws, and operates directly upon the model (in contrast to
+    SelectionInTreeView, which generates a list internally).
 
     [Instance variables:]
         textStartLeft       <Integer>              inset between icon and text 
@@ -888,5 +919,5 @@
 !HierarchicalListView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/HierarchicalListView.st,v 1.5 1999-07-06 13:39:44 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/HierarchicalListView.st,v 1.6 1999-07-06 16:50:46 cg Exp $'
 ! !