From: SourceForge.net <no...@so...> - 2003-07-26 15:54:03
|
Feature Requests item #777834, was opened at 2003-07-25 21:55 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=777834&group_id=44253 Category: Debugger Group: Medium (< 1 pair-month) Status: Open Priority: 5 Submitted By: Charles Reis (csreis) Assigned to: Nobody/Anonymous (nobody) Summary: Access private members in debugger Initial Comment: In the debug interpreters, we seem to be having trouble accessing some private/protected fields and methods which should be in scope. It's still unclear exactly which cases work and which don't, but we should make an effort to provide access to anything that would normally be accessible in the method itself. In the short term, we can simply react if we are denied access to *any* field/method in a debug interpreter, granting access to it by circumventing the accessibility system with reflection. (This is done with a technique shown in the PrivilegedAccessor class: http://groups.yahoo.com/group/junit/files/src/PrivilegedAccessor.java) In the long term, we should be more accurate and prevent access to private fields and methods that the user actually shouldn't have access to. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=777834&group_id=44253 |