I have a NetBeans project which is using the JRE 1.4 environment which means I can't use generics.

How can I change the project to use 1.6 (?) so I can use generics.

Appolgies for the newbie question. Please feel free to edit so it makes more sense.

Thanks

link|improve this question

80% accept rate
Your reputation points don't really say that you're actually a newbie ))). benmccann.com/dev-blog/change-the-netbeans-default-jdk – denisk Nov 8 '10 at 21:34
I am when it comes to Java. :) – griegs Nov 8 '10 at 21:36
feedback

1 Answer

up vote 2 down vote accepted

In the Project tab, right click on the project and select Properties. In the Library category select Java Platform JDK 1.6. Then, in the Source category select Source/Binary Format JDK6. This assumes that you installed JDK 1.6 and NetBeans knows about this. JDK 1.6 must be known to NetBeans as a Java Platform. From the menu select Tools->Java Platform Manager. If JDK 1.6 is not in the list you can add it there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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