ListModelView.st
changeset 1431 0cc20a8f2f7c
parent 1430 ae9e48cc7b9d
child 1443 c9ef29f36c29
--- a/ListModelView.st	Tue Jul 06 15:40:09 1999 +0200
+++ b/ListModelView.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.
+"
+
+
 View subclass:#ListModelView
 	instanceVariableNames:'list listHolder textStartLeft viewOrigin enabled fgColor bgColor
 		lineSpacing widthOfContents computeWidthInRange startOfLinesY
@@ -10,8 +23,28 @@
 
 !ListModelView 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 widget is a new improved revision of the good-old ListView.
+    In contrast to ListView, this one reacts on changes of the
+    underlying model and performs optimized redraws.
+    It requires a List (or alike) as model.
+
     This class can only passively display collections of elements.
     The class doesn't keep its own list, it works directly on
     the model( List or HierarchicalList ).
@@ -1231,6 +1264,6 @@
 !ListModelView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/ListModelView.st,v 1.9 1999-07-06 13:39:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ListModelView.st,v 1.10 1999-07-06 16:48:46 cg Exp $'
 ! !
 ListModelView initialize!