I would like to use the new switch statement with Strings in it that is possible in Java 1.7. e.g.
String str = "string";
switch (str) {
case "string" :
// do something
break;
}
And I installed JDK 7 and changed the Preferences to use jre7 but i am unable to change the compiler compliance level to 1.7 from inside eclipse, the properties dialog has a drop down that goes only up to 1.6. Restarted the tool but did not see any changes. Now what should i do to udate the JDK to 1.7 in Eclipe Thanks in adcance!!
