Bugs item #1442022, was opened at 2006-03-02 20:26
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=379534&aid=1442022&group_id=23735
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 3
Submitted By: Matthias Radestock (mradestock)
Assigned to: Nobody/Anonymous (nobody)
Summary: generic-java-methods not always named
Initial Comment:
SISC (1.13.0-alpha)
#;> (import s2j)
#;> (define-generic-java-method index-of)
#;> (index-of)
Error: no applicable method for args () in generic
procedure #0=#<procedure |indexOf|>
so far so good ...
#;> (define-java-class <java.lang.string-buffer>)
#;> (index-of)
Error: no applicable method for args () in generic
procedure #0=#<procedure |indexOf|>
...still fine.
But now let's start this off slightly differently:
SISC (1.13.0-alpha)
#;> (import s2j)
#;> (define-generic-java-method index-of)
#;> (define-java-class <java.lang.string-buffer>)
#;> (index-of)
Error: no applicable method for args () in generic
procedure #0=#<procedure>
The procedure name has vanished.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=379534&aid=1442022&group_id=23735
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
|