5.0 to 1.4 downporting

hi, i wrote an application that meant for 5.0 and i need to make it backward compatible for 1.4 compiler is there any tool that does this conversion or i have to do it my self ?thanks Jaimon
[225 byte] By [jajaa] at [2007-11-26 18:04:40]
# 1
When compiling use the -target option. http://java.sun.com/j2se/1.5.0/docs/tooldocs/solaris/javac.html
zadoka at 2007-7-9 5:35:07 > top of Java-index,Desktop,Runtime Environment...
# 2

Option -target 1.4 works only in combination with option -source, but it works perfectly well if you don't rely on the new language features which have been introduced in 1.5.

If your application has been developed with the new language features in 1.5, Retroweaver or similar software can be an option. See also http://retroweaver.sourceforge.net/

joneloa at 2007-7-9 5:35:07 > top of Java-index,Desktop,Runtime Environment...