Line number align improvement suggestion
Status: Beta
Brought to you by:
vovikg
During some of the debugging sessions I noticed that
JAD can move functions around. In this case just
inserting newlines in the output stream doesn't work -
functions need to be re-sorted. Please consider
replacing DebugAlignWriter.java with the version
attached to accomplish this functionality.
new DebugAlignWriter version
Logged In: YES
user_id=281434
Very nice, thanks a ton. Will include in one of the next
releases. One question, is it a valid assumption than everyone
who is using Eclipse is on 1.4?
Logged In: YES
user_id=79346
as per
http://www.eclipse.org/eclipse/faq/eclipse-faq.html#users_3
JDK required is 1.3+
Logged In: YES
user_id=764909
In a sample I attached I use regular expressions to identify
where function starts. In a big file with a lot of functions it
can be quite slow. Another way to do that is to use -v option
of the JAD. It will dump out list of the functions jad
encountered. Then this list can be parsed and used vs.
regular expressions. This is more involved code and would
require changes in JadDecompiler class as well as
DebugAlignWriter. However it is noticeably faster.
Logged In: YES
user_id=764909
In a sample I attached I use regular expressions to identify
where function starts. In a big file with a lot of functions it
can be quite slow. Another way to do that is to use -v option
of the JAD. It will dump out list of the functions jad
encountered. Then this list can be parsed and used vs.
regular expressions. This is more involved code and would
require changes in JadDecompiler class as well as
DebugAlignWriter. However it is noticeably faster.