Details
-
Type:
New Feature
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: JRuby 1.7.0.pre1
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
The issue is to allow import of multiple Java classes in the same java_import call.
The simplest for would be:
java_import android.content.Context, android.content.Intent
java_import android.view.Display, android.view.Gravity
Another idea:
java_import :Context, :Intent, :package => android.content
java_import :Display, :Gravity, :package => android.view
...or maybe like this, my favorite:
java_import android.content, :Context, :Intent
java_import android.view, :Display, :Gravity
What do you think?
Issue Links
- is duplicated by
-
JRUBY-6335
Import multiple classes 6677888990´´
-
Moving Uwe's comment into description.