HierarchicalList.st
changeset 1431 0cc20a8f2f7c
parent 1430 ae9e48cc7b9d
child 1437 3ff0d67ec0af
--- a/HierarchicalList.st	Tue Jul 06 15:40:09 1999 +0200
+++ b/HierarchicalList.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.
+"
+
+
 List subclass:#HierarchicalList
 	instanceVariableNames:'root showRoot application monitoringTask monitoringTaskDelay'
 	classVariableNames:''
@@ -7,6 +20,21 @@
 
 !HierarchicalList 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
 "
     Hierarchical Lists are mostly like List, but adding and removing
@@ -303,5 +331,5 @@
 !HierarchicalList class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/HierarchicalList.st,v 1.2 1999-07-06 13:40:08 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/HierarchicalList.st,v 1.3 1999-07-06 16:49:23 cg Exp $'
 ! !