User development,
The document "JBossRetroPitfalls", was updated Feb 22, 2010
by Manik Surtani.
To view the document, visit:
http://community.jboss.org/docs/DOC-10739#cf
Document:
--------------------------------------------------------------
This page captures some of the pitfalls encountered when writing Java 5 code and expecting
it to work with Java 1.4.x after retroweaving with JBossRetro.
Note that these have been encountered with JBoss Retro 1.0.4.GA - future versions may not
have these problems.
* New java.util.Timer constructors which take in Strings are translated to their unnamed
equivalents. This means that the name passed to the Timer constructor will not be
assigned to the associated
java.util.TimerThread
. See
http://jira.jboss.com/jira/browse/JBBUILD-350
* Anonymous implementation of abstract methods in enums causes Weaver to barf - don't
use these. See
http://jira.jboss.com/jira/browse/JBBUILD-332
--------------------------------------------------------------