-
-
Notifications
You must be signed in to change notification settings - Fork 925
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support method access for nested Java classes #2639
Comments
So you're basically saying to allow nested classes to be accessible with "." as well as "::", yes? |
yy, since JRuby allows I'm just not sure if there aren't any draw-backs for introducing fully Java "like" nested class access ? |
Hello Guys!! I want to work on this particular issue. Any pointers as in can I maven build the jruby java code? |
@rohitdumbre86 hey! believe some of those can be figured out - it's quite a std if you need to better understand JRuby's Java Integration - look for commits tagged with [ji] prefix |
I prepared solution, although I am not 100% it's the best one. |
@edipofederle It seems like we eventually decided that using So... we can close this if @kares no longer wants to support |
assuming Java integration already works in a Java-like manner :
java.lang.management.MemoryType.value_of('HEAP')
shall support Java-like
java.awt.Desktop.Action.valueOf('OPEN')
instead of "only" Ruby-like
java.awt.Desktop::Action.valueOf('OPEN')
The text was updated successfully, but these errors were encountered: