Controller.st
changeset 46 7b331e9012fd
parent 12 9f0995fac1fa
child 54 29a6b2f8e042
--- a/Controller.st	Thu Jun 02 23:21:42 1994 +0200
+++ b/Controller.st	Fri Jun 03 02:54:39 1994 +0200
@@ -18,23 +18,45 @@
 !
 
 Controller comment:'
+COPYRIGHT (c) 1992 by Claus Gittinger
+              All Rights Reserved
+'!
 
-COPYRIGHT (c) 1992 by Claus Gittinger
+!Controller class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1992 by Claus Gittinger
               All Rights Reserved
 
-Controllers can be used to controll the user-interactions
-to a Model which is shown in a view. For very simple views,
-(and due to the evolution of Smalltalk/X) many view-classes have
-the controller function integrated.
+ 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.
+"
+!
 
-Instance variables:
-    view        aView		the view I controll
-    model       aModel		the model which is to be worked on
-    sensor      aWindowSensor	a sensor, getting events
+version
+"
+$Header: /cvs/stx/stx/libview/Controller.st,v 1.5 1994-06-03 00:52:01 claus Exp $
+"
+!
 
-$Header: /cvs/stx/stx/libview/Controller.st,v 1.4 1993-12-11 01:25:51 claus Exp $
-written summer 92 by claus
-'!
+documentation
+"
+    Controllers can be used to controll the user-interactions
+    to a Model which is shown in a view. For very simple views,
+    (and due to the evolution of Smalltalk/X) many view-classes have
+    the controller function integrated.
+
+    Instance variables:
+        view        aView		the view I controll
+        model       aModel		the model which is to be worked on
+        sensor      aWindowSensor	a sensor, getting events
+"
+! !
 
 !Controller methodsFor:'initialize / release'!