#DOCUMENTATION by cg expeccoALM_1_13
authorClaus Gittinger <cg@exept.de>
Thu, 22 Nov 2018 20:15:52 +0100
changeset 5969 fa2bd856b54d
parent 5968 7e837f062a69
child 5971 43c63c0dc901
#DOCUMENTATION by cg class: DSVColumnView comment/format in: #columnAdaptor: #selectRowIndex:
DSVColumnView.st
--- a/DSVColumnView.st	Wed Nov 21 16:23:17 2018 +0100
+++ b/DSVColumnView.st	Thu Nov 22 20:15:52 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1997 by Claus Gittinger / eXept Software AG
               All Rights Reserved
@@ -1081,15 +1079,17 @@
     ^ columnAdaptor
 !
 
-columnAdaptor:something
+columnAdaptor:usuallyAnApplication
     "set the value of the instance variable 'columnAdaptor' (automatically generated)"
 
     columnAdaptor isValueModel ifTrue:[
         columnAdaptor removeDependent:self
     ].
-    (columnAdaptor := something) isValueModel ifTrue:[
+    (columnAdaptor := usuallyAnApplication) isValueModel ifTrue:[
         columnAdaptor addDependent:self
     ].
+
+    "Modified (format): / 21-11-2018 / 19:32:57 / Claus Gittinger"
 !
 
 columnHolder
@@ -4892,10 +4892,12 @@
     self selectionChanged.
 !
 
-selectRowIndex:something
+selectRowIndex:anInteger
     "set selection of rows"
 
-    self selectColIndex:self selectedColIndex rowIndex:something
+    self selectColIndex:self selectedColIndex rowIndex:anInteger
+
+    "Modified (format): / 21-11-2018 / 20:08:26 / Claus Gittinger"
 !
 
 selectedColIndex