comment/format in:5 methods
authorClaus Gittinger <cg@exept.de>
Thu, 03 Mar 2011 19:32:49 +0100
changeset 2895 b7abc3d3321f
parent 2894 4380670e758e
child 2896 96d5a0b6fc56
comment/format in:5 methods
ApplicationModel.st
--- a/ApplicationModel.st	Thu Mar 03 19:32:41 2011 +0100
+++ b/ApplicationModel.st	Thu Mar 03 19:32:49 2011 +0100
@@ -2618,23 +2618,24 @@
 !
 
 openInterface:aSymbol
-    "open a specific interface. 
+    "open a specific interface.
+
      The argument, aSymbol specifies which interface. The concrete
      application subclass must provide a method with that name,
-     which must return an interfaceSpec. This is forwarded to
-     the builder to create the views.
-     Typically, applications only use one interface, 
-     returned by the #windowSpec method."
+     which must return an interfaceSpec. 
+     This is forwarded to the builder to create the views.
+     Typically, applications only use one interface, returned by the #windowSpec method."
 
     self allButOpenInterface:aSymbol.
     self openWindow.
     ^ builder
 
-    "Modified: 14.2.1997 / 20:25:33 / cg"
+    "Modified: / 03-03-2011 / 18:57:04 / cg"
 !
 
 openInterface:aSymbol as:windowType
-    "open a specific interface. 
+    "open a specific interface in a special mode.
+
      The argument, aSymbol specifies which interface. 
      The concrete application subclass must provide a method with that name,
      which must return an interfaceSpec. This is forwarded to the builder to create the views.
@@ -2645,11 +2646,11 @@
     self openWindowAs:windowType.
     ^ builder
 
-    "Modified: 14.2.1997 / 20:25:33 / cg"
+    "Modified: / 03-03-2011 / 18:56:23 / cg"
 !
 
 openInterface:aSymbol at:aLocation
-    "open a specific interface. 
+    "open a specific interface at a location in default mode. 
 
      The argument, aSymbol specifies which interface. The concrete
      application subclass must provide a method with that name,
@@ -2662,20 +2663,19 @@
     self openWindowAt:aLocation.
     ^ builder
 
-    "Created: 14.2.1997 / 20:19:44 / cg"
+    "Created: / 14-02-1997 / 20:19:44 / cg"
+    "Modified: / 03-03-2011 / 18:55:26 / cg"
 !
 
 openInterfaceAs:windowType
-    "open a standard interface.
-     The windowType can be any of #slave, #partner, #dialog, #popUp etc.
-     Subclasses which do not have an interfaceSpec 
-     should redefine this method and create & open their view(s) there.
-     (see Launcher as an example)."
+    "open a standard interface in a special mode.
+
+     The windowType can be any of #slave, #partner, #dialog, #popUp etc."
 
     ^ self openInterface:(self defaultWindowSpecName) as:windowType
 
-    "Modified: / 9.9.1996 / 22:39:23 / stefan"
-    "Modified: / 23.1.1998 / 18:16:50 / cg"
+    "Modified: / 09-09-1996 / 22:39:23 / stefan"
+    "Modified: / 03-03-2011 / 18:56:41 / cg"
 !
 
 openInterfaceAt:aLocation
@@ -2688,16 +2688,12 @@
 !
 
 openInterfaceModal
-    "open a standard interface as a modal dialog.
-
-     Subclasses which do not have an interfaceSpec 
-     should redefine this method and create & open their view(s) there.
-     (see Launcher as an example)."
+    "open a standard interface as a modal dialog"
 
     ^ self openInterfaceModal:(self defaultWindowSpecName)
 
-    "Modified: / 9.9.1996 / 22:39:23 / stefan"
-    "Modified: / 23.1.1998 / 18:17:17 / cg"
+    "Modified: / 09-09-1996 / 22:39:23 / stefan"
+    "Modified: / 03-03-2011 / 18:54:48 / cg"
 !
 
 openInterfaceModal:aSymbol
@@ -3767,11 +3763,11 @@
 !ApplicationModel class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.312 2011-02-28 16:57:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.313 2011-03-03 18:32:49 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.312 2011-02-28 16:57:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.313 2011-03-03 18:32:49 cg Exp $'
 ! !
 
 ApplicationModel initialize!