java - Is it possible to display toString() result in value column in Eclipse debugger? -
is possible display tostring() result in value column in eclipse debugger?
by default displays values built-in types , type name + id user types:
note, debugger can display tostring()
, in separate section (below), not in value
column.
it possible, if bit clumsy. 1 picture, more thousand words:
in preferences, search "detail formatters". optionally define simple return command each type want inspect (if want choose details yourself).
then down below, select "show variable details > label variables" (if tostring() enough you), or "> label variables detail formatters" if want use custom formatters. former makes "type + id" display vanish, tho.
simple formatter "not tostring()":
Comments
Post a Comment