I created a new web project and created a class.
public class Test<H> {
}
I am getting the error “Syntax error,type parameters are only available if source level is 5.0” I understand types are used in JRE 1.5 aka 5.0 and I have the JRE System Libraray [1.5.0_03] being used in my web project.
I then create a new Java Project using eclipse 3.1 without myeclipseide and it works fine?
I’m so confused here? Any help would be appreciated
Thanks
Lawrence