Please help me... How do I get, serialize and set variables in JPDA? Here what I am doing...
List frames = thread.frames ( ) ;
...
StackFrame frame = ( StackFrame ) frames.get ( i ) ;
List locals = frame.visibleVariables() ;
...
LocalVariable var = ( LocalVariable ) locals.get( j ) ;
Value value = frame.getValue(var) ;
The problem is that "value" is not serializable... Anyone knows if there is any other way to get and serialize local variables?
Thanks.