#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Sat, 04 Feb 2017 22:18:40 +0100
changeset 5444 90c4fcd20bd4
parent 5443 79f472b09304
child 5445 a146a640792c
#DOCUMENTATION by cg class: TextBox comment/format in: #contents #initialText:
TextBox.st
--- a/TextBox.st	Sat Feb 04 22:18:22 2017 +0100
+++ b/TextBox.st	Sat Feb 04 22:18:40 2017 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1992 by Claus Gittinger
 	      All Rights Reserved
@@ -194,22 +192,28 @@
 !TextBox methodsFor:'accessing'!
 
 contents
-    "return my contents"
+    "return my contents (i.e. possibly modified text after accept)"
 
     ^ textView contents
+
+    "Modified (comment): / 04-02-2017 / 18:01:03 / cg"
 !
 
 initialText:aString
-    "define the initial text in the enterfield"
+    "define the initial text in the texteditor"
 
     textView contents:aString
+
+    "Modified (comment): / 04-02-2017 / 18:01:16 / cg"
 !
 
 readOnly:aBoolean
     "make my text readOnly or readWrite"
 
     textView readOnly:aBoolean
-!
+! !
+
+!TextBox methodsFor:'accessing-contents'!
 
 textView
     ^ textView
@@ -291,10 +295,10 @@
 !TextBox class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/TextBox.st,v 1.25 2015-05-04 13:47:26 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/TextBox.st,v 1.25 2015-05-04 13:47:26 cg Exp $'
+    ^ '$Header$'
 ! !