Sorry, things did not get displayed the way I was expecting:
Since jde2.2.5 has some support for better display of javadoc comments. A class that
has html tags gets displayed from inside
emacs as shown below:
java someClass {
StringBuffer buffer = new StringBuffer();
public void setBold(boolean bold){
if(bold){
buffer.append("<b>"); //"); are in bold
}else{ //}else{ are in bold
buffer.append("</b>"); //buffer.append(" are in bold
}
}
public void setUnderscore(boolean us){
if(us){
buffer.append("<u>");______________________________//"); are underlined
}else{______________________________________________//}else{ are underlined
buffer.append("</u>"); //buffer.append(" are underlined
}
}
}
The above was getting displayed fine with earlier versions I think.
-Rohit