> how can I view variables while debugging in hex format?
> I didn't see any settings in the debug preferences.
> thanks for the help
AFAIK there's not standard way. You could write a converter that does this
and use that in the debug view AFAIK. Alternatively you could write a
method in some utility class that does conversion int2hex for example and
add an expression like this "YourUtility.int2hex( yourVar )".
Kind regards
robert
"coltrane" <tendengarci@yahoo.com> wrote in news:1104364619.848870.20200
@f14g2000cwb.googlegroups.com:
> how can I view variables while debugging in hex format?
> I didn't see any settings in the debug preferences.
> thanks for the help
>
> john
There is an option for primitive Types (int, long,...).
Switch to Debug perspective.
In the Variables view click the "menu" item (black triangle item) and
select "Java Primitives...".
In the Dialog you can choose between Hex view, Ascii view and unsigned
(for byte).
--thomas
coltrane - 07 Jan 2005 13:47 GMT
thanks to both.
as a person moving from an MS environment to eclipse/java I am quite
surprised at the funcitonality and usability of eclipse.
cheers