coments
authorClaus Gittinger <cg@exept.de>
Thu, 30 Mar 2006 19:08:17 +0200
changeset 2954 d9d43dc5d4a5
parent 2953 512c422ba591
child 2955 57c6b1a672dd
coments
TerminalView.st
--- a/TerminalView.st	Tue Mar 28 23:02:36 2006 +0200
+++ b/TerminalView.st	Thu Mar 30 19:08:17 2006 +0200
@@ -323,13 +323,13 @@
 !
 
 inStream
-    "return the value of the instance variable 'inStream' (automatically generated)"
+    "set the stream, which gets all input data (i.e. keyboard input)"
 
     ^ inStream
 !
 
 inStream:something
-    "set the value of the instance variable 'inStream' (automatically generated)"
+    "return the stream, which gets all input data (i.e. keyboard input)"
 
     inStream := something.
 !
@@ -351,20 +351,18 @@
 !
 
 outStream
-    "return the value of the instance variable 'outStream' (automatically generated)"
+    "return the stream, which is used to present data in the view (i.e. shell output)"
 
     ^ outStream
 !
 
 outStream:something
-    "set the value of the instance variable 'outStream' (automatically generated)"
+    "set the stream, which is used to present data in the view (i.e. shell output)"
 
     outStream := something.
 !
 
 readerProcess
-    "return the value of the instance variable 'readerProcess' (automatically generated)"
-
     ^ readerProcess
 !
 
@@ -378,16 +376,12 @@
 !
 
 translateNLToCRNL
-    "return the value of the instance variable 'translateNLToCRNL' (automatically generated)"
-
     ^ translateNLToCRNL
 
     "Created: / 28.1.2002 / 20:32:10 / micha"
 !
 
 translateNLToCRNL:something
-    "set the value of the instance variable 'translateNLToCRNL' (automatically generated)"
-
     translateNLToCRNL := something.
 
     "Created: / 28.1.2002 / 20:32:10 / micha"
@@ -1913,7 +1907,7 @@
 !TerminalView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.125 2005-04-14 09:12:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.126 2006-03-30 17:08:17 cg Exp $'
 ! !
 
 TerminalView initialize!