Message524

Author eris
Recipients
Date 2001-12-11.16:59:39
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
In essence, if I create a java instance and drop it
into a method this way:

x.method(mod.Something())

then a call to Something.getClass() from inside
'method' often fails



if I instead do it this way:

newthing = mod.Something()
x.method(newthing)

it seems to fix the reflection problems.

this behaviour does not seem to be limited to a jdk
version or jython version

I don't have a concise piece of code that demonstrates
this, I'll try to get one together and add it as a comment.
History
Date User Action Args
2008-02-20 17:16:58adminlinkissue491634 messages
2008-02-20 17:16:58admincreate