#UI_ENHANCEMENT by cg
authorClaus Gittinger <cg@exept.de>
Sun, 09 Oct 2016 12:11:38 +0200
changeset 20573 83f6414391b1
parent 20572 46cece0d82ed
child 20574 0826ff286ea3
#UI_ENHANCEMENT by cg class: Behavior comment/format in: #isStartableWithMain #isStartableWithStart
Behavior.st
--- a/Behavior.st	Sun Oct 09 12:10:45 2016 +0200
+++ b/Behavior.st	Sun Oct 09 12:11:38 2016 +0200
@@ -3556,12 +3556,18 @@
 !
 
 isStartableWithMain
+    "return true, if this is an application class,
+     which can be started via #main / #main:"
+
     ^ false
 
     "Created: / 06-08-2006 / 15:23:50 / cg"
 !
 
 isStartableWithStart
+    "return true, if this is an application class,
+     which can be started via #start"
+
     ^ false
 
     "Created: / 06-08-2006 / 15:23:57 / cg"