JavaMethodDescriptor.st
branchcvs_MAIN
changeset 3959 bcd66dbe495d
parent 3412 df11bb428463
--- a/JavaMethodDescriptor.st	Sun Sep 08 15:48:59 2019 +0200
+++ b/JavaMethodDescriptor.st	Sun Sep 08 16:07:18 2019 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1996-2015 by Claus Gittinger
 
@@ -20,6 +22,8 @@
 "
 "{ Package: 'stx:libjava' }"
 
+"{ NameSpace: Smalltalk }"
+
 JavaDescriptor subclass:#JavaMethodDescriptor
 	instanceVariableNames:'return name parameters'
 	classVariableNames:''
@@ -208,6 +212,13 @@
 
 !JavaMethodDescriptor methodsFor:'queries'!
 
+argumentCount
+
+    ^ parameters size
+
+    "Created: / 14-12-2011 / 21:20:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 numArgs
 
     ^ parameters size
@@ -229,7 +240,7 @@
 !JavaMethodDescriptor class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libjava/JavaMethodDescriptor.st,v 1.8 2015-03-20 12:08:00 vrany Exp $'
+    ^ '$Header$'
 !
 
 version_HG
@@ -238,6 +249,6 @@
 !
 
 version_SVN
-    ^ 'Id'
+    ^ '$Id$'
 ! !