comments
authorClaus Gittinger <cg@exept.de>
Sat, 06 Sep 2008 12:42:05 +0200
changeset 11150 be60e4505904
parent 11149 b9e1bc6f47d5
child 11151 61a33963c219
comments
Smalltalk.st
--- a/Smalltalk.st	Fri Sep 05 19:57:45 2008 +0200
+++ b/Smalltalk.st	Sat Sep 06 12:42:05 2008 +0200
@@ -976,6 +976,7 @@
     "Created: 20.6.1997 / 16:58:28 / cg"
 ! !
 
+
 !Smalltalk class methodsFor:'browsing'!
 
 browseAllCallsOn:aSelectorSymbol
@@ -1021,7 +1022,9 @@
 browseClass:aClass
     "{ Pragma: +optSpace }"
 
-    "startup a browser on aClass"
+    "startup a browser on aClass. 
+     The broser will only show that class (i.e. be a singleClass-browser).
+     See browseInClass: for a full browser, which has aClass selected initially."
 
     UserPreferences systemBrowserClass browseClass:aClass
 
@@ -1058,7 +1061,9 @@
 browseInClass:aClass
     "{ Pragma: +optSpace }"
 
-    "startup a full browser showing aClass"
+    "startup a full browser showing aClass.
+     The browser will be a full browser with aClass initially selekted.
+     See browseClass: for a singleClass browser, which shows only a single class."
 
     UserPreferences systemBrowserClass openInClass:aClass
 
@@ -1070,7 +1075,9 @@
 browseInClass:aClass selector:selector
     "{ Pragma: +optSpace }"
 
-    "startup a full browser showing aClass>>selector"
+    "startup a full browser showing aClass>>selector.
+     The browser will be a full browser with aClass initially selekted.
+     See browseClass: for a singleClass browser, which shows only a single class."
 
     UserPreferences systemBrowserClass openInClass:aClass selector:selector
 
@@ -7091,5 +7098,5 @@
 !Smalltalk class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.850 2008-08-05 13:26:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.851 2008-09-06 10:42:05 cg Exp $'
 ! !