Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Major
-
Resolution: Won't Fix
-
Affects Version/s: JRuby 1.1b1
-
Fix Version/s: None
-
Component/s: Java Integration
-
Labels:None
-
Number of attachments :
Description
If I have a Java class:
public class Foo {
protected int color;
...
}
Then I inherit from it in Ruby:
class Bar < Foo
def paintIt
@color
end
end
@color should exist which is the inehrited field.