class: MenuItem
authorClaus Gittinger <cg@exept.de>
Tue, 28 May 2013 20:41:48 +0200
changeset 3178 ced60e8c83fe
parent 3177 c9bc8a08c5ca
child 3179 9bcc92bcbcee
class: MenuItem comment/format in: #indication #indication:
MenuItem.st
--- a/MenuItem.st	Tue May 28 09:59:49 2013 +0200
+++ b/MenuItem.st	Tue May 28 20:41:48 2013 +0200
@@ -374,17 +374,19 @@
 !
 
 indication
-    "value of the items on/off indicator (CheckToggle)"
+    "value of the items on/off indicator (CheckToggle).
+     Usually a valueHolder"
     
     ^ indication
 
     "Created: 25.2.1997 / 20:59:28 / cg"
 !
 
-indication:something 
-    "value of the items on/off indicator (CheckToggle)"
+indication:someValueHolder 
+    "value of the items on/off indicator (CheckToggle).
+     someValueHolder is usually a value holder"
     
-    indication := something.
+    indication := someValueHolder.
 
     "Created: 25.2.1997 / 20:59:28 / cg"
 !
@@ -1097,9 +1099,10 @@
 !MenuItem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/MenuItem.st,v 1.100 2012-11-03 08:38:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MenuItem.st,v 1.101 2013-05-28 18:41:48 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/MenuItem.st,v 1.100 2012-11-03 08:38:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MenuItem.st,v 1.101 2013-05-28 18:41:48 cg Exp $'
 ! !
+