j2me and generics
I received this error when compiling my midlet programm in netbeans 5.5
use -source 5 or higher to enable generics
this error is for trying to define a generic class such as
public class NewClass<A, B> {
}
but in a normal java application there is no such error!!
now I want to know :
does j2me have support for generics or not?

