SmalltalkLanguage.st
branchjv
changeset 17966 8b5df02e171f
parent 17938 e2aad1d7c317
child 17976 50c2416f962a
--- a/SmalltalkLanguage.st	Fri Sep 07 13:46:06 2012 +0100
+++ b/SmalltalkLanguage.st	Fri Sep 07 17:24:32 2012 +0100
@@ -67,7 +67,7 @@
 !SmalltalkLanguage methodsFor:'accessing - classes'!
 
 codeGeneratorClass
-    "Answers a class that can generate smalltalk code"
+    "Answers a class that can generate code"
 
     ^ SmalltalkCodeGeneratorTool
 
@@ -173,62 +173,18 @@
     "Created: / 16-08-2009 / 09:01:38 / Jan Vrany <vranyj1@fel.cvut.cz>"
 ! !
 
-!SmalltalkLanguage methodsFor:'utilities - source code'!
-
-methodTemplate
-    "return a method definition template string"
-
-    |s|
-
-    s := TextStream on:''.
-    s nextPutAll:
-'message selector and argument names
-    "comment stating purpose of this message"
-
-    |temporaries|
-
-    statement.
-    statement.
-
-    "
-     optional: comment giving example use
-    "
-'.
-    s cr.
-    s emphasis:(UserPreferences current commentEmphasisAndColor).
-    s nextPutAll:
-'"
- change the above template into real code;
- remove this comment.
- Then `accept'' either via the menu 
- or via the keyboard (usually CMD-A).
-
- You do not need this template; you can also
- select any existing methods code, change it,
- and finally `accept''. The method will then be
- installed under the selector as defined in the
- actual text - no matter which method is selected
- in the browser.
-
- Or clear this text, type in the method from scratch
- and install it with `accept''.
-"
-'.
-    ^ s contents
-! !
-
 !SmalltalkLanguage class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SmalltalkLanguage.st,v 1.16 2012/04/01 11:21:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SmalltalkLanguage.st,v 1.19 2012/08/21 17:54:48 cg Exp $'
 !
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libbasic/SmalltalkLanguage.st,v 1.16 2012/04/01 11:21:32 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libbasic/SmalltalkLanguage.st,v 1.19 2012/08/21 17:54:48 cg Exp §'
 !
 
 version_SVN
-    ^'$Id: SmalltalkLanguage.st 10804 2012-04-13 13:18:13Z vranyj1 $'
+    ^'$Id: SmalltalkLanguage.st 10844 2012-09-07 16:24:32Z vranyj1 $'
 ! !