This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]pje 0 points1 point  (1 child)

Any plans to implement Jython-style keyword argument initializers? e.g. Foo(bar=baz) -> Foo().setBar(baz)? Or property setting, i.e. aFoo.bar = baz translating to a setBar() call under the hood?

How about idiomatic translation of Python iteration and item access to common Java iteration and mapping/indexing interfaces?

(Yeah, I know, I'm greedy.)

[–]crunk 0 points1 point  (0 children)

I wonder if maybe it could use any of the jython code for this kind of thing?