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>");
      }else{
         buffer.append("</b>");
      }
   }

   public void setUnderscore(boolean us){
      if(us){
         buffer.append("<u>");__________________________________________               
                                                    
      }else{___________________________________________________________
         buffer.append("</u>");
      }
   }
}

The above was getting displayed fine with earlier versions I think.

-Rohit

Reply via email to