How do I change private variables from superclass to public so they can be inherited by the subclass? I've tried public void setDetails, but didnt work.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
closed as not a real question by Harry Joy, Roland Illig, Ian Ringrose, BalusC, Graviton Aug 2 '11 at 13:46
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
If variables in the parent class are declared Assuming you do not have access to the parent class: The only way to take an existing class are manually make private fields public, is to use Reflection. This does however cause some performance overhead and security issues. If that does not affect your program, you can try it. |
|||||||||
|