Thanks! The patch will do. Patrick LeBoutillier:
Artem, You can use the wrapper for know, but I'll jave a fix in for the next release. I already do something along the same lines for java.lang.Number, but I wasn't even aware of java.lang.CharSequence... If you want I will send you a patch when I have one. Patrick On 1/11/06, Artem Gr <[EMAIL PROTECTED]> wrote:FYI, a workaround that works: # Inline::Java is initialized elsewere, here it is used for a second time, should be already connected to a shared JVM. use Inline Java => <<END_OF_JAVA_CODE; public class StringWrapper implements CharSequence { private final String string; public StringWrapper(String string) { this.string = string; } public char charAt(int index) { return string.charAt(index); } public int length() { return string.length(); } public CharSequence subSequence(int start, int end) { return string.subSequence(start, end); } public String toString() { return string; } } END_OF_JAVA_CODE my $wrapper = new your_current_package::StringWrapper('bar'); my $got = $javaObject->charSequenceMethod($wrapper);-- ===================== Patrick LeBoutillier Laval, Québec, Canada
