Initial revision
authorclaus
Thu, 23 Mar 1995 17:51:31 +0100
changeset 50 53bc56e07e8f
parent 49 f7938135fb9a
child 51 ac84315b8181
Initial revision
AppControl.st
AppModel.st
ApplicationController.st
ApplicationModel.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/AppControl.st	Thu Mar 23 17:51:31 1995 +0100
@@ -0,0 +1,53 @@
+"
+ COPYRIGHT (c) 1995 by Claus Gittinger
+	      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.
+"
+
+Model subclass:#ApplicationController
+	 instanceVariableNames:''
+	 classVariableNames:''
+	 poolDictionaries:''
+	 category:'ST80-Compatibility'
+!
+
+!ApplicationModel class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1995 by Claus Gittinger
+	      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.
+"
+!
+
+version
+"
+$Header: /cvs/stx/stx/libview2/Attic/AppControl.st,v 1.1 1995-03-23 16:51:23 claus Exp $
+"
+!
+
+documentation
+"
+    Since many ST-80 classes are subclasses of ApplicationController, 
+    this class is provided here to allow easier porting of ST-80 code.
+    It does not (currently) provide any functionality; therefore, manual
+    changes have to be made to get those applications to run under ST/X.
+    (but at least, this enables you to fileIn that code)
+
+    Instance variables:
+"
+! !
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/AppModel.st	Thu Mar 23 17:51:31 1995 +0100
@@ -0,0 +1,61 @@
+"
+ COPYRIGHT (c) 1995 by Claus Gittinger
+	      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.
+"
+
+Model subclass:#ApplicationModel
+	 instanceVariableNames:'builder'
+	 classVariableNames:''
+	 poolDictionaries:''
+	 category:'ST80-Compatibility'
+!
+
+!ApplicationModel class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1995 by Claus Gittinger
+	      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.
+"
+!
+
+version
+"
+$Header: /cvs/stx/stx/libview2/Attic/AppModel.st,v 1.1 1995-03-23 16:51:31 claus Exp $
+"
+!
+
+documentation
+"
+    Since many ST-80 classes are subclasses of ApplicationModel, this class
+    is provided here to allow easier porting of ST-80 code.
+    It does not (currently) provide any functionality; therefore, manual
+    changes have to be made to get those applications to run under ST/X.
+    (but at least, this enables you to fileIn that code)
+
+    Instance variables:
+	builder      ?          dont know what that is used for yet,
+				some subclasses (see manchester goodies)
+				depend on thise being there.
+"
+! !
+
+!ApplicationModel class methodsFor:'startup'!
+
+open
+    self subclassResponsibility
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ApplicationController.st	Thu Mar 23 17:51:31 1995 +0100
@@ -0,0 +1,53 @@
+"
+ COPYRIGHT (c) 1995 by Claus Gittinger
+	      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.
+"
+
+Model subclass:#ApplicationController
+	 instanceVariableNames:''
+	 classVariableNames:''
+	 poolDictionaries:''
+	 category:'ST80-Compatibility'
+!
+
+!ApplicationModel class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1995 by Claus Gittinger
+	      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.
+"
+!
+
+version
+"
+$Header: /cvs/stx/stx/libview2/ApplicationController.st,v 1.1 1995-03-23 16:51:23 claus Exp $
+"
+!
+
+documentation
+"
+    Since many ST-80 classes are subclasses of ApplicationController, 
+    this class is provided here to allow easier porting of ST-80 code.
+    It does not (currently) provide any functionality; therefore, manual
+    changes have to be made to get those applications to run under ST/X.
+    (but at least, this enables you to fileIn that code)
+
+    Instance variables:
+"
+! !
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ApplicationModel.st	Thu Mar 23 17:51:31 1995 +0100
@@ -0,0 +1,61 @@
+"
+ COPYRIGHT (c) 1995 by Claus Gittinger
+	      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.
+"
+
+Model subclass:#ApplicationModel
+	 instanceVariableNames:'builder'
+	 classVariableNames:''
+	 poolDictionaries:''
+	 category:'ST80-Compatibility'
+!
+
+!ApplicationModel class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1995 by Claus Gittinger
+	      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.
+"
+!
+
+version
+"
+$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.1 1995-03-23 16:51:31 claus Exp $
+"
+!
+
+documentation
+"
+    Since many ST-80 classes are subclasses of ApplicationModel, this class
+    is provided here to allow easier porting of ST-80 code.
+    It does not (currently) provide any functionality; therefore, manual
+    changes have to be made to get those applications to run under ST/X.
+    (but at least, this enables you to fileIn that code)
+
+    Instance variables:
+	builder      ?          dont know what that is used for yet,
+				some subclasses (see manchester goodies)
+				depend on thise being there.
+"
+! !
+
+!ApplicationModel class methodsFor:'startup'!
+
+open
+    self subclassResponsibility
+! !