comment: #derivedFields
authorClaus Gittinger <cg@exept.de>
Fri, 09 Mar 2012 10:03:49 +0100
changeset 11404 4872471e104d
parent 11403 9152fe5dd543
child 11405 4738cbb078ce
comment: #derivedFields
OrderedCollectionInspectorView.st
--- a/OrderedCollectionInspectorView.st	Fri Mar 09 09:17:40 2012 +0100
+++ b/OrderedCollectionInspectorView.st	Fri Mar 09 10:03:49 2012 +0100
@@ -137,6 +137,8 @@
 !
 
 derivedFields
+    "provide any derived (computed, virtual) fields"
+
     ^ Dictionary new
         declareAllNewFrom:(super derivedFields ? #());
         add:('-size' -> [ object size ]);
@@ -144,6 +146,7 @@
 
     "Created: / 22-08-2006 / 11:55:29 / cg"
     "Modified: / 09-10-2006 / 12:27:32 / cg"
+    "Modified (comment): / 09-03-2012 / 09:54:17 / cg"
 !
 
 indexList 
@@ -189,9 +192,9 @@
 !OrderedCollectionInspectorView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/OrderedCollectionInspectorView.st,v 1.43 2011-01-27 11:09:38 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/OrderedCollectionInspectorView.st,v 1.44 2012-03-09 09:03:49 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/OrderedCollectionInspectorView.st,v 1.43 2011-01-27 11:09:38 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/OrderedCollectionInspectorView.st,v 1.44 2012-03-09 09:03:49 cg Exp $'
 ! !