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?

[390 byte] By [etaa] at [2007-11-26 20:26:05]
# 1
generics arrived with java1.5 so it could not work properly with j2me which is alight java.if generics was enabled, you could create Vector<E> but, as you can see in the MIDP javadoc, you cannot !!!sup@reno
suparenoa at 2007-7-10 0:53:28 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2
thanks alot !but in eclipse Ide when the error reveals ide offers to change the jre path and change the project properties after which the error will be removed. you know what happens there
etaa at 2007-7-10 0:53:28 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3
you don't have to change your JDK path...your project must be compile with 1.4 java compliance. see project settings in eclipse ide...
suparenoa at 2007-7-10 0:53:28 > top of Java-index,Java Mobility Forums,Java ME Technologies...