vote up 3 vote down star

I like generics a lot and use them whereever I can. Every now and then I need to use one of my classes in another project which has to run on an old JVM (before 5.0), needs to run on JavaME (where generics are not allowed neither) or in Microsoft J# (which has VERY poor Support for generics).

At the moment, I remove all generics manually, which means inserting many casts as well.

Since generics are said to be compile-time-only, and every piece of generic code could possibly converted to non-generic code automatically, I wonder if there is any tool which can do this for me.

If there is no such tool, how else could I solve the problem? Should I completely stop using generics?

There already are answers related to bytecode compability. What if I need source code compability for some reason?

flag

64% accept rate

4 Answers

vote up 4 vote down check

You need to use something like Retroweaver in order to achieve this sort of thing. The other answers on this question are slightly misleading. Generics are sort-of bytecode compatible with previous versions, but not entirely (see java.lang.reflect.Type if you don't believe me). Also, there is an issue of the bytecode version attribute, which will prevent a class compiled against 1.5 from running on a previous version. Retroweaver works around both problems while also enabling other Java 5 features like annotations and enums.

link|flag
vote up -5 vote down

Its bytecode compatible, it should work out of the box with an old interpreter.

link|flag
1.5 compiled classes have a different version number in the class. The class won't load in previous versions of Java. – Ken Gentle Nov 22 '08 at 20:26
Of course you have to compile with -target / -source to embedd this information. – flolo Nov 22 '08 at 20:32
@flolo: if you specify source 1.5 then source 1.4 is not allowed. Have you actually tried this? – Hemal Pandya Nov 22 '08 at 22:02
Hemal, you mean -source 1.5 -target 1.4 is disallowed. – Tom Hawtin - tackline Nov 26 '08 at 13:16
vote up 2 vote down

In Netbeans (I'm not sure about what IDE you are using) you can set the source-code compatibility to a set java version - just set it to one that supports generics. As already posted, generics are bytecode compatable with old JVM / JRE versions and so it should hopefully work out of the box.

link|flag
vote up 2 vote down

To the best of my knowledge Java 5 is not byte-code compatible with Java 1.4. That is, You cannot use Java 5 compiled classes with an earlier VM.

You can check retroweaver. This was mentioned a lot when generics were introduced. I personally have no experience with it.

Did you ask Google? My search turned up http://www.publicobject.com/glazedlists/documentation/Generics_and_Java_1.4_with_one_codebase.pdf, which seems a very interesting approach.

link|flag
That's exactly what I was looking for, thanks! The pdf you linked just described the tool. You can actually download it at sites.google.com/site/glazedlists/… – Brian Schimmel Nov 23 '08 at 17:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.