debugging - Eclipse debug can't find fields -
i'm using eclipse debugger , can't inspect/watch field values or results of field.method() calls. i've encountered problem in both juno , in indigo. @ first resolve issue wiping out .metadata , rebuilding, problem occurs fresh build.
a specific error: create deflater object deflater = new deflater();
, set input deflater.setinput(buffer, 0, bufferposition);
, try inspect functionality highlighting section of code deflater.needsinput()
, doing right-click->inspect. error reads: "cannot find field deflater object apps.testcore$tests (id=27)".
the error occurs when field belongs inner class (in case "tests"); when variable local or class not inner class, seems working. hovering on variable "deflater" shows contents drill-down should. highlighting "deflater" , doing inspect gives error, , using expressions view inspect variable/call methods on variable gives same error.
please help; making debugging life difficult, have use println()
more complex hover inspection can provide.
this not remote debugging - local system.
Comments
Post a Comment