| Summary: | [quick fix] Protected access specifier is not getting recognized or some issue | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | sumanth yeddula <sumanthreddy.y> | ||||
| Component: | UI | Assignee: | JDT-UI-Inbox <jdt-ui-inbox> | ||||
| Status: | CLOSED DUPLICATE | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | daniel_megert, pwebster | ||||
| Version: | 4.2 | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Windows 7 | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
Created attachment 223082 [details] Two screenshots with all the code Defined in package1 -- Class1 -- protected int d;(public int a, private int b, int c), Methods: (Class1(); printa(); printb();printc();printd()) package2 -- imported package1.Class1 MainClass is an subclass of Class1 Class1 A= new Class1(); A.d is not accessible. and showing the hint to change d as protected..but d is already defined protected